about summary refs log tree commit diff
path: root/MatrixUtils.Web/Classes/LocalStorageProviderService.cs
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-03-12 22:41:03 +0100
committerRory& <root@rory.gay>2025-03-12 22:41:36 +0100
commit7dd5062b727554c2f02906976973a136dc6c78c0 (patch)
tree2b4cc8a103fb9536225a17f1bdec4d1f4dacc1c2 /MatrixUtils.Web/Classes/LocalStorageProviderService.cs
parentSynapse admin tooling, well known res work (diff)
downloadMatrixUtils-7dd5062b727554c2f02906976973a136dc6c78c0.tar.xz
Fix storage
Diffstat (limited to 'MatrixUtils.Web/Classes/LocalStorageProviderService.cs')
-rw-r--r--MatrixUtils.Web/Classes/LocalStorageProviderService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixUtils.Web/Classes/LocalStorageProviderService.cs b/MatrixUtils.Web/Classes/LocalStorageProviderService.cs

index 3803a17..0e99cd4 100644 --- a/MatrixUtils.Web/Classes/LocalStorageProviderService.cs +++ b/MatrixUtils.Web/Classes/LocalStorageProviderService.cs
@@ -22,7 +22,7 @@ public class LocalStorageProviderService : IStorageProvider { async Task<bool> IStorageProvider.ObjectExistsAsync(string key) => await _localStorageService.ContainKeyAsync(key); - async Task<List<string>> IStorageProvider.GetAllKeysAsync() => (await _localStorageService.KeysAsync()).ToList(); + async Task<IEnumerable<string>> IStorageProvider.GetAllKeysAsync() => (await _localStorageService.KeysAsync()).ToList(); async Task IStorageProvider.DeleteObjectAsync(string key) => await _localStorageService.RemoveItemAsync(key); }