Merge branch 'soru/install-on-sd' into 'main'

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

Closes #501

See merge request famedly/fluffychat!478
onboarding
Krille Fear 4 years ago
commit ab4a5d04b0

@ -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