update polymer

This commit is contained in:
Luke Pulverenti 2015-10-05 22:50:20 -04:00
parent 5daca3238e
commit 6271ca99c8
2 changed files with 7 additions and 2 deletions

View File

@ -230,7 +230,7 @@ namespace Emby.Drawing
_imageEncoder.EncodeImage(originalImagePath, cacheFilePath, newWidth, newHeight, quality, options);
// ImageMagick doesn't seem to always release it right away
await Task.Delay(100).ConfigureAwait(false);
await Task.Delay(300).ConfigureAwait(false);
}
}
finally

View File

@ -554,8 +554,13 @@ namespace MediaBrowser.Server.Implementations.LiveTv
isNew = true;
}
item.ChannelType = channelInfo.ChannelType;
if (!string.Equals(channelInfo.Id, item.ExternalId))
{
isNew = true;
}
item.ExternalId = channelInfo.Id;
item.ChannelType = channelInfo.ChannelType;
item.ServiceName = serviceName;
item.Number = channelInfo.Number;