fix: cm stuck at boot up, revert to flutter 3.0.5

This commit is contained in:
Kingtous
2022-09-16 16:19:15 +08:00
parent 921c321a71
commit 402e1c587c
3 changed files with 17 additions and 13 deletions

View File

@@ -136,9 +136,15 @@ class PlatformFFI {
name = linuxInfo.name;
id = linuxInfo.machineId ?? linuxInfo.id;
} else if (Platform.isWindows) {
WindowsDeviceInfo winInfo = await deviceInfo.windowsInfo;
name = winInfo.computerName;
id = winInfo.computerName;
try {
WindowsDeviceInfo winInfo = await deviceInfo.windowsInfo;
name = winInfo.computerName;
id = winInfo.computerName;
} catch (e) {
debugPrint("$e");
name = "unknown";
id = "unknown";
}
} else if (Platform.isMacOS) {
MacOsDeviceInfo macOsInfo = await deviceInfo.macOsInfo;
name = macOsInfo.computerName;