Skip to content

Commit 2e6957a

Browse files
committed
Fix
1 parent 451f2e8 commit 2e6957a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/database/global/settings.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ class Settings {
622622
ss.settings.isTester.value = map['isTester'] ?? false;
623623
ss.settings.cloudSyncingEnabled.value = map['cloudSyncingEnabled'] ?? false;
624624
ss.settings.lastSynced.value = map['lastSynced'] ?? 0;
625-
ss.settings.attachmentSyncEnabled.value = map['attachmentSyncEnabled'] ?? true;
625+
ss.settings.attachmentSyncEnabled.value = map['attachmentSyncEnabled'] ?? false;
626626
ss.settings.save();
627627

628628
eventDispatcher.emit("theme-update", null);
@@ -797,7 +797,7 @@ class Settings {
797797
s.isTester.value = map['isTester'] ?? false;
798798
s.cloudSyncingEnabled.value = map['cloudSyncingEnabled'] ?? false;
799799
s.lastSynced.value = map['lastSynced'] ?? 0;
800-
s.attachmentSyncEnabled.value = map['attachmentSyncEnabled'] ?? true;
800+
s.attachmentSyncEnabled.value = map['attachmentSyncEnabled'] ?? false;
801801
return s;
802802
}
803803

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: Send iMessages on Android using BlueBubbles!
1212
# Read more about iOS versioning at
1313
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1414

15-
version: 1.15.0+189
15+
version: 1.15.0+190
1616
publish_to: none
1717

1818
environment:

0 commit comments

Comments
 (0)