aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core/ApplicationHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-24 16:21:36 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-24 16:21:36 -0500
commit6ce6ed7d9c7b9ae6e742bca9872a3bcbe73025fd (patch)
tree3faf39eaf4a231d6142ef601bfa4e3b1d646f01f /Emby.Server.Core/ApplicationHost.cs
parente140da0ddf63a446692b52639a4bef9a911cc2ef (diff)
force guide refresh
Diffstat (limited to 'Emby.Server.Core/ApplicationHost.cs')
-rw-r--r--Emby.Server.Core/ApplicationHost.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs
index 92914b932..b9412d0fb 100644
--- a/Emby.Server.Core/ApplicationHost.cs
+++ b/Emby.Server.Core/ApplicationHost.cs
@@ -491,7 +491,8 @@ namespace Emby.Server.Core
{
var migrations = new List<IVersionMigration>
{
- new LibraryScanMigration(ServerConfigurationManager, TaskManager)
+ new LibraryScanMigration(ServerConfigurationManager, TaskManager),
+ new GuideMigration(ServerConfigurationManager, TaskManager)
};
foreach (var task in migrations)