aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/CoreAppHost.cs
diff options
context:
space:
mode:
authorFernando Fernández <ferferga@hotmail.com>2021-09-06 21:35:54 +0200
committerFernando Fernández <ferferga@hotmail.com>2021-09-06 21:35:54 +0200
commit154b7d8505e27dca9b5f68b2cf69d8c7dd44dcc3 (patch)
treecd123030434214dbaa483092707f5c89db0e0d49 /Jellyfin.Server/CoreAppHost.cs
parentf4af78817d5832c11ff96f365714917fad0db4f9 (diff)
Fix identation
Diffstat (limited to 'Jellyfin.Server/CoreAppHost.cs')
-rw-r--r--Jellyfin.Server/CoreAppHost.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Jellyfin.Server/CoreAppHost.cs b/Jellyfin.Server/CoreAppHost.cs
index 60275c918..21bd9ba01 100644
--- a/Jellyfin.Server/CoreAppHost.cs
+++ b/Jellyfin.Server/CoreAppHost.cs
@@ -78,8 +78,9 @@ namespace Jellyfin.Server
}
ServiceCollection.AddDbContextPool<JellyfinDb>(
- options => options.UseLoggerFactory(LoggerFactory).
- UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
+ options => options
+ .UseLoggerFactory(LoggerFactory)
+ .UseSqlite($"Filename={Path.Combine(ApplicationPaths.DataPath, "jellyfin.db")}"));
ServiceCollection.AddEventServices();
ServiceCollection.AddSingleton<IBaseItemManager, BaseItemManager>();