Browse Source

Merge pull request #2969 from MediaBrowser/dev

Dev
Luke 7 years ago
parent
commit
b780787d6e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Emby.Server.Implementations/Devices/SqliteDeviceRepository.cs
  2. 1 1
      SharedVersion.cs

+ 1 - 1
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)"
                                };
 

+ 1 - 1
SharedVersion.cs

@@ -1,3 +1,3 @@
 using System.Reflection;
 
-[assembly: AssemblyVersion("3.2.33.16")]
+[assembly: AssemblyVersion("3.2.33.17")]