From 7dd5062b727554c2f02906976973a136dc6c78c0 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 12 Mar 2025 22:41:03 +0100 Subject: Fix storage --- .gitmodules | 2 +- LibMatrix | 2 +- MatrixUtils.Web/Classes/LocalStorageProviderService.cs | 2 +- MatrixUtils.Web/Classes/SessionStorageProviderService.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index 8cbedc0..487c63b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "LibMatrix"] path = LibMatrix - url = https://git.rory.gay/matrix/LibMatrix.git + url = https://cgit.rory.gay/matrix/LibMatrix.git [submodule "MxApiExtensions"] path = MxApiExtensions url = https://cgit.rory.gay/matrix/tools/MxApiExtensions.git diff --git a/LibMatrix b/LibMatrix index 9659093..cacabe2 160000 --- a/LibMatrix +++ b/LibMatrix @@ -1 +1 @@ -Subproject commit 9659093fcd9745f7030418998ca1cf886ff820b3 +Subproject commit cacabe2b1a15bb7492e23d477ec653513e84d260 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 IStorageProvider.ObjectExistsAsync(string key) => await _localStorageService.ContainKeyAsync(key); - async Task> IStorageProvider.GetAllKeysAsync() => (await _localStorageService.KeysAsync()).ToList(); + async Task> IStorageProvider.GetAllKeysAsync() => (await _localStorageService.KeysAsync()).ToList(); async Task IStorageProvider.DeleteObjectAsync(string key) => await _localStorageService.RemoveItemAsync(key); } diff --git a/MatrixUtils.Web/Classes/SessionStorageProviderService.cs b/MatrixUtils.Web/Classes/SessionStorageProviderService.cs index ae0bb79..da169de 100644 --- a/MatrixUtils.Web/Classes/SessionStorageProviderService.cs +++ b/MatrixUtils.Web/Classes/SessionStorageProviderService.cs @@ -22,7 +22,7 @@ public class SessionStorageProviderService : IStorageProvider { async Task IStorageProvider.ObjectExistsAsync(string key) => await _sessionStorageService.ContainKeyAsync(key); - async Task> IStorageProvider.GetAllKeysAsync() => (await _sessionStorageService.KeysAsync()).ToList(); + async Task> IStorageProvider.GetAllKeysAsync() => (await _sessionStorageService.KeysAsync()).ToList(); async Task IStorageProvider.DeleteObjectAsync(string key) => await _sessionStorageService.RemoveItemAsync(key); } -- cgit 1.5.1