diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-17 16:11:13 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-02-17 16:11:13 -0500 |
| commit | 36f8eb1149e821de46b1ee15dcd1990c6a378ca9 (patch) | |
| tree | b461142fb436426bb3b3e4740eb183a8329ef65d /Emby.Server.Core/ApplicationHost.cs | |
| parent | b51f00feb695e50c2f7e1ea3b89715a2469c01ea (diff) | |
add db startup error handling
Diffstat (limited to 'Emby.Server.Core/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Core/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs index a3c228a58..2163c4e47 100644 --- a/Emby.Server.Core/ApplicationHost.cs +++ b/Emby.Server.Core/ApplicationHost.cs @@ -863,7 +863,7 @@ namespace Emby.Server.Core /// </summary> private void ConfigureNotificationsRepository() { - var repo = new SqliteNotificationsRepository(LogManager.GetLogger("SqliteNotificationsRepository"), ServerConfigurationManager.ApplicationPaths); + var repo = new SqliteNotificationsRepository(LogManager.GetLogger("SqliteNotificationsRepository"), ServerConfigurationManager.ApplicationPaths, FileSystemManager); repo.Initialize(); |
