Merge pull request #3837 from cvium/fix_memorycache

Fix BaseItems not being cached in-memory
This commit is contained in:
Bond-009 2020-08-07 11:58:23 +02:00 committed by GitHub
commit c82b26a4b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -299,7 +299,7 @@ namespace Emby.Server.Implementations.Library
}
}
_memoryCache.CreateEntry(item.Id).SetValue(item);
_memoryCache.Set(item.Id, item);
}
public void DeleteItem(BaseItem item, DeleteOptions options)