fix: Hotfix database migration
This commit is contained in:
parent
b248b48728
commit
d61e224f1c
2 changed files with 6 additions and 2 deletions
|
|
@ -81,7 +81,11 @@ class FlutterFluffyBoxDatabase extends FluffyBoxDatabase {
|
||||||
if (!kIsWeb) {
|
if (!kIsWeb) {
|
||||||
Directory directory;
|
Directory directory;
|
||||||
try {
|
try {
|
||||||
directory = await getApplicationSupportDirectory();
|
if (Platform.isLinux) {
|
||||||
|
directory = await getApplicationSupportDirectory();
|
||||||
|
} else {
|
||||||
|
directory = await getApplicationDocumentsDirectory();
|
||||||
|
}
|
||||||
} catch (_) {
|
} catch (_) {
|
||||||
try {
|
try {
|
||||||
directory = await getLibraryDirectory();
|
directory = await getLibraryDirectory();
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
name: fluffychat
|
name: fluffychat
|
||||||
description: Chat with your friends.
|
description: Chat with your friends.
|
||||||
publish_to: none
|
publish_to: none
|
||||||
version: 1.0.0+1772
|
version: 1.0.1+1773
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.11.0 <3.0.0"
|
sdk: ">=2.11.0 <3.0.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue