fix: Try different directories on all kind of errors thrown for hive store

onboarding
Sorunome 4 years ago
parent 7ac90bb3f0
commit 7ffe9f8631

@ -109,10 +109,10 @@ class FlutterMatrixHiveStore extends FamedlySdkHiveDatabase {
try { try {
try { try {
return (await getApplicationSupportDirectory()).path; return (await getApplicationSupportDirectory()).path;
} on MissingPlatformDirectoryException { } catch (_) {
return (await getApplicationDocumentsDirectory()).path; return (await getApplicationDocumentsDirectory()).path;
} }
} on MissingPlatformDirectoryException { } catch (_) {
return (await getDownloadsDirectory()).path; return (await getDownloadsDirectory()).path;
} }
} }

Loading…
Cancel
Save