Revert "storage: add another directory to the blacklist"

This reverts commit f043423d6e.
refactor-toolbar
Floens 8 years ago
parent d6ffd593a1
commit 3cc3c6a0bc
  1. 4
      Clover/app/src/main/java/org/floens/chan/core/saver/StorageHelper.java

@ -31,9 +31,11 @@ public class StorageHelper {
String absolutePath = file.getAbsolutePath(); String absolutePath = file.getAbsolutePath();
switch (absolutePath) { switch (absolutePath) {
case "/storage": case "/storage":
return true;
case "/storage/emulated": case "/storage/emulated":
case "/storage/emulated/0": return true;
case "/storage/emulated/0/0": case "/storage/emulated/0/0":
return true;
case "/storage/emulated/legacy": case "/storage/emulated/legacy":
return true; return true;
} }

Loading…
Cancel
Save