فهرست منبع

CodecsComponent: force redownload in broken situations

Delete the apparently broken file and redownload. This is probably a
good idea. If anything, it will help with debugging.
Vincent Lang 8 سال پیش
والد
کامیت
6742c2ce52
1فایلهای تغییر یافته به همراه6 افزوده شده و 3 حذف شده
  1. 6 3
      src/player/CodecsComponent.cpp

+ 6 - 3
src/player/CodecsComponent.cpp

@@ -454,11 +454,14 @@ bool CodecsFetcher::codecNeedsDownload(const CodecDriver& codec)
     if (Codecs::sameCodec(codec, m_Codecs[n]))
       return false;
   }
-  if (QFile(codec.getPath()).exists())
+  QFile codecFile(codec.getPath());
+  if (codecFile.exists())
   {
     QLOG_ERROR() << "Codec" << codec.driver << "exists on disk as" << codec.getPath()
-                 << "but is not known as installed - broken codec? Skipping download.";
-    return false;
+                 << "but is not known as installed - broken codec?";
+    if (!codecFile.remove())
+      return false;
+    QLOG_ERROR() << "Retrying download.";
   }
   return true;
 }