Skip to content

Commit

Permalink
Merge pull request #577 from 4ster1sk/fix/load-general-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
shiosyakeyakini-info authored Mar 31, 2024
2 parents bc44391 + 7cf498e commit 017c89e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/repository/account_settings_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ class AccountSettingsRepository extends ChangeNotifier {
return;
}
} else {
await SharedPreferenceAppGroup.setString("account_settings", storedData);
if (defaultTargetPlatform == TargetPlatform.iOS) {
await SharedPreferenceAppGroup.setString("account_settings", storedData);
}
}
try {
_accountSettings
Expand Down

0 comments on commit 017c89e

Please sign in to comment.