Fix bug when migrating user db with users that have never logged in.

This commit is contained in:
Patrick Barron
2020-05-28 14:21:26 -04:00
parent d116497912
commit 8ca78f33e9
5 changed files with 12 additions and 18 deletions

View File

@@ -196,9 +196,9 @@ namespace Jellyfin.Server.Migrations.Routines
public string EasyPassword { get; set; }
public DateTime LastLoginDate { get; set; }
public DateTime? LastLoginDate { get; set; }
public DateTime LastActivityDate { get; set; }
public DateTime? LastActivityDate { get; set; }
public string Name { get; set; }