Skip to content

Commit

Permalink
Update app/src/main/java/com/owncloud/android/utils/FilesSyncHelper.java
Browse files Browse the repository at this point in the history
Co-authored-by: Tom <[email protected]>
Signed-off-by: Jonas Mayer <[email protected]>
  • Loading branch information
JonasMayerDev and ZetaTom authored Apr 16, 2024
1 parent 8b5c6a3 commit 3347abb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) {
}

@Override
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) throws IOException {
public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
if (syncedFolder.isExcludeHidden() && dir.compareTo(Paths.get(syncedFolder.getLocalPath())) != 0 && dir.toFile().isHidden()) {
return null;
}
Expand Down

0 comments on commit 3347abb

Please sign in to comment.