MatrixRoomUtils

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 6990fa14d13e63aba7211a1a93c24912531186fb
parent b933f7ed1189c7e14d82b4fcf5c98fb3ef4b9cf1
Author: TheArcaneBrony <myrainbowdash949@gmail.com>
Date:   Thu,  4 May 2023 00:21:23 +0200

Fix state reloading

Diffstat:
MMatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs b/MatrixRoomUtils.Web/Classes/LocalStorageWrapper.cs @@ -9,8 +9,8 @@ public partial class LocalStorageWrapper //some basic logic public static async Task ReloadLocalStorage(ILocalStorageService localStorage) { - await LoadFromLocalStorage(localStorage); await SaveToLocalStorage(localStorage); + await LoadFromLocalStorage(localStorage); } public static async Task LoadFromLocalStorage(ILocalStorageService localStorage) {