add catch err

This commit is contained in:
csf
2022-12-20 23:55:54 +09:00
parent c67b952869
commit 58c1be39c8
4 changed files with 12 additions and 5 deletions

View File

@@ -213,7 +213,6 @@ class FileModel extends ChangeNotifier {
}
receiveFileDir(Map<String, dynamic> evt) {
// debugPrint("recv file dir:$evt");
if (evt['is_local'] == "false") {
// init remote home, the connection will automatic read remote home when established,
try {
@@ -237,7 +236,9 @@ class FileModel extends ChangeNotifier {
debugPrint("init remote home:${fd.path}");
_currentRemoteDir = fd;
}
} finally {}
} catch (e) {
debugPrint("receiveFileDir err=$e");
}
}
_fileFetcher.tryCompleteTask(evt['value'], evt['is_local']);
notifyListeners();