mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-23 08:58:52 +00:00
remove files old version compat
This commit is contained in:
parent
7cdda6d83d
commit
320d259e94
2 changed files with 3 additions and 1 deletions
|
|
@ -285,6 +285,9 @@ class FileModel extends ChangeNotifier {
|
|||
showLoading(translate("Waiting"));
|
||||
final fd = await _fileFetcher.fetchDirectoryRecursive(
|
||||
_jobId, item.path, items.isLocal!, true);
|
||||
if (fd.path.isEmpty) {
|
||||
fd.path = item.path;
|
||||
}
|
||||
fd.format(isWindows);
|
||||
EasyLoading.dismiss();
|
||||
if (fd.entries.isEmpty) {
|
||||
|
|
|
|||
|
|
@ -118,7 +118,6 @@ class FfiModel with ChangeNotifier {
|
|||
var evt = FFI.popEvent();
|
||||
if (evt == null) break;
|
||||
var name = evt['name'];
|
||||
debugPrint("got message:$name");
|
||||
if (name == 'msgbox') {
|
||||
handleMsgBox(evt, peerId);
|
||||
} else if (name == 'peer_info') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue