Преглед на файлове

add tilter to display only folders with write permissions

Jan-Peter Klein преди 10 месеца
родител
ревизия
a03d5af144
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      src/main/java/org/cryptomator/common/locationpresets/GoogleDriveMacLocationPresetsProvider.java

+ 1 - 0
src/main/java/org/cryptomator/common/locationpresets/GoogleDriveMacLocationPresetsProvider.java

@@ -69,6 +69,7 @@ public final class GoogleDriveMacLocationPresetsProvider implements LocationPres
 		try (var dirStream = Files.list(ROOT_LOCATION)) {
 			return dirStream.filter(path -> Files.isDirectory(path) && PATTERN.test(path.getFileName().toString()))
 					.flatMap(this::getPresetsFromAccountPath)
+					.filter(preset -> Files.isWritable(preset.path()))
 					.toList().stream();
 		} catch (IOException | UncheckedIOException e) {
 			return Stream.empty();