瀏覽代碼

Always create nomedia file

inorichi 9 年之前
父節點
當前提交
dcfda61aba
共有 1 個文件被更改,包括 5 次插入3 次删除
  1. 5 3
      app/src/main/java/eu/kanade/tachiyomi/data/preference/PreferencesHelper.java

+ 5 - 3
app/src/main/java/eu/kanade/tachiyomi/data/preference/PreferencesHelper.java

@@ -42,10 +42,12 @@ public class PreferencesHelper {
         if (getDownloadsDirectory().equals(defaultDownloadsDir.getAbsolutePath()) &&
                 !defaultDownloadsDir.exists()) {
             defaultDownloadsDir.mkdirs();
-            try {
-                new File(defaultDownloadsDir, ".nomedia").createNewFile();
-            } catch (IOException e) { /* Ignore */ }
         }
+
+        // Don't display downloaded chapters in gallery apps creating a ".nomedia" file
+        try {
+            new File(getDownloadsDirectory(), ".nomedia").createNewFile();
+        } catch (IOException e) { /* Ignore */ }
     }
 
     private String getKey(int keyResource) {