about summary refs log tree commit diff
path: root/MatrixRoomUtils.Web/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MatrixRoomUtils.Web/Program.cs')
-rw-r--r--MatrixRoomUtils.Web/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MatrixRoomUtils.Web/Program.cs b/MatrixRoomUtils.Web/Program.cs
index c760108..a670378 100644
--- a/MatrixRoomUtils.Web/Program.cs
+++ b/MatrixRoomUtils.Web/Program.cs
@@ -33,7 +33,7 @@ builder.Services.AddBlazoredSessionStorage(config => {
 });
 
 builder.Services.AddScoped<TieredStorageService>(x =>
-    new(
+    new TieredStorageService(
         cacheStorageProvider: new SessionStorageProviderService(x.GetRequiredService<ISessionStorageService>()),
         dataStorageProvider: new LocalStorageProviderService(x.GetRequiredService<ILocalStorageService>())
     )