Add tv home.

This commit is contained in:
Patrick Barron
2020-07-27 20:50:58 -04:00
parent 7d6c1befe5
commit 754837f16f
3 changed files with 13 additions and 1 deletions

View File

@@ -94,7 +94,9 @@ namespace Jellyfin.Server.Migrations.Routines
: 10000,
EnableNextVideoInfoOverlay = dto.CustomPrefs.TryGetValue("enableNextVideoInfoOverlay", out var enabled)
? bool.Parse(enabled)
: true
: true,
DashboardTheme = dto.CustomPrefs.TryGetValue("dashboardtheme", out var theme) ? theme : string.Empty,
TvHome = dto.CustomPrefs.TryGetValue("tvhome", out var home) ? home : string.Empty
};
for (int i = 0; i < 7; i++)