We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8593335 commit 47e7eb6Copy full SHA for 47e7eb6
2 files changed
lib/services/base/fileService.dart
@@ -30,7 +30,10 @@ class FileService {
30
}
31
32
getLog().d('save file to: ' + outputFile);
33
- download(stream, outputFile);
+ await download(stream, outputFile);
34
+
35
+ File file = File(outputFile);
36
+ await file.readAsString(); // Try read the file to ensure it exists
37
38
return Result(true, '');
39
} catch (ex) {
release_notes.txt
@@ -1,6 +1,7 @@
1
- Bugfix for platform detection in AssistantApps update checker
2
- Added The Lore and Plot of NMS by PhinoxDragon
3
- Added Portal conversion page
4
+- Better handling of Portal & Inventory backup
5
6
_Submitted to App Stores 2022-09-08_
7
0 commit comments