aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-10-22 02:39:19 -0400
committerGitHub <noreply@github.com>2017-10-22 02:39:19 -0400
commitb780787d6e317df7d2efd59bd7d3384a1f6a30e9 (patch)
tree6e0642c59efa369e5c0d40d3aa525bc904c0d7d4
parentef00237c729cbcc5cdba14560ef57e3e88da762b (diff)
parentf6df19ddf4b1e412abe90ad28d237edb5fc24ece (diff)
Merge pull request #2969 from MediaBrowser/dev
Dev
-rw-r--r--Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs2
-rw-r--r--SharedVersion.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs b/Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs
index b11a5d65b..d7817b17a 100644
--- a/Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs
+++ b/Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs
@@ -60,7 +60,7 @@ namespace Emby.Server.Implementations.Devices
RunDefaultInitialization(connection);
string[] queries = {
- "create table if not exists Devices (Id TEXT PRIMARY KEY, Name TEXT NOT NULL, ReportedName TEXT NOT NULL, CustomName TEXT, CameraUploadPath TEXT, LastUserName TEXT NOT NULL, AppName TEXT NOT NULL, AppVersion TEXT NOT NULL, LastUserId TEXT NOT NULL, DateLastModified DATETIME NOT NULL, Capabilities TEXT NOT NULL)",
+ "create table if not exists Devices (Id TEXT PRIMARY KEY, Name TEXT NOT NULL, ReportedName TEXT NOT NULL, CustomName TEXT, CameraUploadPath TEXT, LastUserName TEXT, AppName TEXT NOT NULL, AppVersion TEXT NOT NULL, LastUserId TEXT, DateLastModified DATETIME NOT NULL, Capabilities TEXT NOT NULL)",
"create index if not exists idx_id on Devices(Id)"
};
diff --git a/SharedVersion.cs b/SharedVersion.cs
index b2144e9de..e5411afd7 100644
--- a/SharedVersion.cs
+++ b/SharedVersion.cs
@@ -1,3 +1,3 @@
using System.Reflection;
-[assembly: AssemblyVersion("3.2.33.16")]
+[assembly: AssemblyVersion("3.2.33.17")]