mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-06 20:19:30 +01:00
fix: Try different directories on all kind of errors thrown for hive store
This commit is contained in:
parent
7f66fc733f
commit
b7ddf795e8
@ -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…
Reference in New Issue
Block a user