aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-08-03 03:11:38 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-08-03 03:11:38 -0400
commita5e0185da28bad907cb543dc3116fa73a40dee63 (patch)
tree3e36a2313e4f41e4678afb7525c9550861260b8f
parentb1a731f4033d536aca48f87316f246325e785d2b (diff)
parentacef1211193d186fd2da5be14bdb434974c677d1 (diff)
Merge branch 'beta' of https://github.com/MediaBrowser/Emby into beta
-rw-r--r--MediaBrowser.Server.Implementations/Sync/SyncRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Sync/SyncRepository.cs b/MediaBrowser.Server.Implementations/Sync/SyncRepository.cs
index df4149fa7..d7c77e655 100644
--- a/MediaBrowser.Server.Implementations/Sync/SyncRepository.cs
+++ b/MediaBrowser.Server.Implementations/Sync/SyncRepository.cs
@@ -605,7 +605,7 @@ namespace MediaBrowser.Server.Implementations.Sync
{
using (var cmd = connection.CreateCommand())
{
- cmd.CommandText = "select ItemId,Progress,Status from SyncJobItems";
+ cmd.CommandText = "select ItemId,Status,Progress from SyncJobItems";
var whereClauses = new List<string>();