mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix memory pref not removing key correctly
This commit is contained in:
parent
8c29f22124
commit
ef50653b3c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class PrefMemoryProvider extends PrefProvider {
|
|||
|
||||
@override
|
||||
Future<bool> remove(PrefKeyInterface key) async {
|
||||
_data.remove(key);
|
||||
_data.remove(key.toStringKey());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue