aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-05 16:49:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-05 16:49:14 -0400
commit9794c8fb1adc01823a9bdd469b470390fee0ebcd (patch)
treeb2780708fdb202bd6c501687c79429d0670407a5 /MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
parentf4f3d1255e34bced614e125dc8d8b05c29e41ead (diff)
#99 - Active user list wrong
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
index c6f35a978..f471365ce 100644
--- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteDisplayPreferencesRepository.cs
@@ -34,6 +34,18 @@ namespace MediaBrowser.Server.Implementations.Sqlite
}
/// <summary>
+ /// Gets a value indicating whether [enable delayed commands].
+ /// </summary>
+ /// <value><c>true</c> if [enable delayed commands]; otherwise, <c>false</c>.</value>
+ protected override bool EnableDelayedCommands
+ {
+ get
+ {
+ return false;
+ }
+ }
+
+ /// <summary>
/// The _protobuf serializer
/// </summary>
private readonly IProtobufSerializer _protobufSerializer;