diff options
| author | Fernando Fernández <ferferga@hotmail.com> | 2021-09-06 21:35:54 +0200 |
|---|---|---|
| committer | Fernando Fernández <ferferga@hotmail.com> | 2021-09-06 21:35:54 +0200 |
| commit | 154b7d8505e27dca9b5f68b2cf69d8c7dd44dcc3 (patch) | |
| tree | cd123030434214dbaa483092707f5c89db0e0d49 | |
| parent | f4af78817d5832c11ff96f365714917fad0db4f9 (diff) | |
Fix identation
| -rw-r--r-- | Jellyfin.Server/CoreAppHost.cs | 5 |
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>(); |
