Fix MemoryCache usage

pull/3824/head
Patrick Barron 4 years ago
parent 5c65abcd94
commit 8373d6297c

@ -54,7 +54,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
if (!string.IsNullOrEmpty(key) && list.Count > 0)
{
_memoryCache.CreateEntry(key).SetValue(list);
_memoryCache.Set(key, list);
}
return list;

Loading…
Cancel
Save