This commit is contained in:
crschnick
2025-06-07 04:49:37 +00:00
parent 92cf9921dc
commit 653b3104df
2 changed files with 2 additions and 3 deletions

View File

@@ -135,7 +135,6 @@ public final class BrowserFileSystemTabModel extends BrowserStoreSessionTab<File
} catch (IOException e) {
ErrorEvent.fromThrowable(e).handle();
}
fileSystem = null;
});
}

View File

@@ -173,12 +173,12 @@ public class WrapperFileSystem implements FileSystem {
}
@Override
public Stream<FileEntry> listFiles(FilePath file) {
public Stream<FileEntry> listFiles(FilePath file) throws Exception {
if (!check.get()) {
return Stream.empty();
}
return listFiles(file);
return fs.listFiles(file);
}
@Override