Fix MemoryCache usage

This commit is contained in:
Patrick Barron 2020-08-07 14:05:47 -04:00
parent 5c65abcd94
commit 8373d6297c
1 changed files with 1 additions and 1 deletions

View File

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