diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-29 22:37:51 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-29 22:37:51 -0400 |
| commit | a9b041a7e62f408e07d15cb7cf253d76919b6fa1 (patch) | |
| tree | a95cfb9c63c679bd3099d80f3c47a272473aed53 /Emby.Server.Implementations/Channels/ChannelManager.cs | |
| parent | b275cb2451253de07f548ae33e324bf5e2aea733 (diff) | |
rework refresh queue
Diffstat (limited to 'Emby.Server.Implementations/Channels/ChannelManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Channels/ChannelManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelManager.cs b/Emby.Server.Implementations/Channels/ChannelManager.cs index 9ac6459a1..de76157ba 100644 --- a/Emby.Server.Implementations/Channels/ChannelManager.cs +++ b/Emby.Server.Implementations/Channels/ChannelManager.cs @@ -1416,7 +1416,7 @@ namespace Emby.Server.Implementations.Channels if (!_refreshedItems.ContainsKey(program.Id)) { _refreshedItems.TryAdd(program.Id, true); - _providerManager.QueueRefresh(program.Id, new MetadataRefreshOptions(_fileSystem)); + _providerManager.QueueRefresh(program.Id, new MetadataRefreshOptions(_fileSystem), RefreshPriority.Low); } } |
