Added the option to select libaries to monitor in Jellyfin and Emby #2389

This commit is contained in:
tidusjar 2021-07-09 16:22:09 +01:00
commit 6d70010777
20 changed files with 249 additions and 85 deletions

View file

@ -51,6 +51,10 @@ namespace Ombi.Helpers
public async Task Purge()
{
var keys = await _memoryCache.GetAsync<List<string>>(CacheKey);
if (keys == null)
{
return;
}
foreach (var key in keys)
{
base.Remove(key);