Search should not select any sources by default

This commit is contained in:
Imran Remtulla
2025-05-25 15:03:31 -04:00
parent f67cfeb231
commit c246548436

View File

@ -470,7 +470,7 @@ class SettingsProvider with ChangeNotifier {
}
List<String> get searchDeselected {
return prefs?.getStringList('searchDeselected') ?? [];
return prefs?.getStringList('searchDeselected') ?? SourceProvider().sources.map((s) => s.name).toList();
}
set searchDeselected(List<String> list) {