Skip to content

Commit 458393d

Browse files
authored
Fix typo in settings_service.dart (#323)
1 parent 72a4836 commit 458393d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/settings_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Settings {
6969
}
7070

7171
Future<void> setValue<T>(String key, T value) async {
72-
if (_values[key] == key) {
72+
if (_values[key] == value) {
7373
return;
7474
}
7575
_values[key] = value;

0 commit comments

Comments
 (0)