Merge branch 'master' into keyboard

This commit is contained in:
rustdesk
2022-12-09 19:51:15 +08:00
16 changed files with 101 additions and 70 deletions

View File

@@ -63,7 +63,7 @@ class DesktopSettingPage extends StatefulWidget {
DesktopTabPage.onAddSetting(initialPage: page);
}
} catch (e) {
debugPrint('$e');
debugPrintStack(label: '$e');
}
}
}

View File

@@ -31,7 +31,7 @@ class DesktopTabPage extends StatefulWidget {
initialPage: initialPage,
)));
} catch (e) {
debugPrint('$e');
debugPrintStack(label: '$e');
}
}
}

View File

@@ -460,7 +460,7 @@ Future<bool> loginDialog() async {
debugPrint('$resp');
completer.complete(true);
} catch (err) {
debugPrint(err.toString());
debugPrintStack(label: err.toString());
cancel();
return;
}