about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-05-03 20:42:20 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-05-03 20:42:20 +0200
commitb02fb81a56bd94b38fdb26771c3e591419f0f49c (patch)
tree617538d36ff9be9ba0f5d13cb6076b02f017a91b /MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs
parentRefactor (diff)
downloadMatrixUtils-b02fb81a56bd94b38fdb26771c3e591419f0f49c.tar.xz
Small refactoring
Diffstat (limited to 'MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs')
-rw-r--r--MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs b/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs
index 462364c..229d937 100644
--- a/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs
+++ b/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs
@@ -1,12 +1,15 @@
 using Blazored.LocalStorage;
-using MatrixRoomUtils.Authentication;
-using MatrixRoomUtils.Responses;
 
 namespace MatrixRoomUtils.Web.Classes;
 
 public partial class LocalStorageWrapper
 {
     //some basic logic
+    public static async Task ReloadLocalStorage(ILocalStorageService localStorage)
+    {
+        await LoadFromLocalStorage(localStorage);
+        await SaveToLocalStorage(localStorage);
+    }
     public static async Task LoadFromLocalStorage(ILocalStorageService localStorage)
     {
         RuntimeCache.AccessToken = await localStorage.GetItemAsync<string>("rory.matrixroomutils.token");