mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-18 21:37:22 -04:00
Fixes
This commit is contained in:
@@ -135,7 +135,6 @@ public final class BrowserFileSystemTabModel extends BrowserStoreSessionTab<File
|
||||
} catch (IOException e) {
|
||||
ErrorEvent.fromThrowable(e).handle();
|
||||
}
|
||||
fileSystem = null;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user