This commit is contained in:
2026-06-04 12:29:33 -04:00
parent 0c820ac973
commit 9323e7a1a6
17 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ public class StorageService : IStorageService
public void SetValue<T>(string key, T value)
{
if (key.Equals(StorageKeys.EnabledStorage) && value.Equals(true))
if (value != null && key.Equals(StorageKeys.EnabledStorage) && value.Equals(true))
{
_localStorageService.SetItem(key, value);
NotifyDataChanged();