updat settings

This commit is contained in:
Fabian Freund
2025-06-27 22:02:37 +02:00
parent bf190276cc
commit ba3c7aa63f
2 changed files with 149 additions and 19 deletions
File diff suppressed because one or more lines are too long
@@ -16,7 +16,7 @@ class GeckoPrefService {
final value = switch (pref.value) {
final bool x => '$x',
final int x => '$x',
final String x => '"$x"',
final String x => "'$x'", //Use single ticks to allow json
_ => throw Exception('Unknow pref type'),
};