update video osd

This commit is contained in:
Luke Pulverenti 2017-01-25 02:04:34 -05:00
parent 1aff43059a
commit cf470529b1
4 changed files with 3 additions and 5 deletions

View file

@ -112,7 +112,7 @@ namespace Emby.Dlna.PlayTo
private int GetInactiveTimerIntervalMs()
{
return 20000;
return 30000;
}
public void Start()

View file

@ -103,7 +103,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
}
else
{
channel.Id = channelIdPrefix + channel.Id.GetMD5().ToString("N");
channel.Id = channelIdPrefix + urlHash + channel.Id.GetMD5().ToString("N");
}
channel.Path = line;

View file

@ -27,7 +27,7 @@ namespace Emby.Server.Implementations.Migrations
public async Task Run()
{
var name = "GuideRefresh";
var name = "GuideRefresh1";
if (!_config.Configuration.Migrations.Contains(name, StringComparer.OrdinalIgnoreCase))
{

View file

@ -35,8 +35,6 @@ namespace Emby.Server.Implementations.Migrations
{
_taskManager.QueueScheduledTask(_taskManager.ScheduledTasks.Select(i => i.ScheduledTask)
.First(i => string.Equals(i.Key, "RefreshLibrary", StringComparison.OrdinalIgnoreCase)));
_taskManager.QueueScheduledTask(_taskManager.ScheduledTasks.Select(i => i.ScheduledTask)
.First(i => string.Equals(i.Key, "RefreshGuide", StringComparison.OrdinalIgnoreCase)));
});
var list = _config.Configuration.Migrations.ToList();