Fix identation

This commit is contained in:
Fernando Fernández 2021-09-06 21:35:54 +02:00
parent f4af78817d
commit 154b7d8505
No known key found for this signature in database
GPG key ID: 44495B839CCFF8CF

View file

@ -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>();