diff --git a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs index 2264cc5244..c5a93720c7 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs @@ -6,7 +6,7 @@ using System.Linq; namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications { /// - /// Sends out messages anytime a notification is added or udpated + /// Notifies clients anytime a notification is added or udpated /// public class WebSocketNotifier : IServerEntryPoint { diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs index 274a491bee..8b02264e87 100644 --- a/MediaBrowser.ServerApplication/ApplicationHost.cs +++ b/MediaBrowser.ServerApplication/ApplicationHost.cs @@ -385,9 +385,8 @@ namespace MediaBrowser.ServerApplication { PageSize = 4096, CacheSize = 4096, - SyncMode = SynchronizationModes.Off, - DataSource = dbPath, - JournalMode = SQLiteJournalModeEnum.Wal + SyncMode = SynchronizationModes.Normal, + DataSource = dbPath }; var connection = new SQLiteConnection(connectionstr.ConnectionString);