fix(newsletter): Fix newsletter not publishing double episodes (#4495)

[skip ci]
This commit is contained in:
sephrat 2022-02-04 21:28:26 +01:00 committed by GitHub
parent 86e87dad49
commit ddf63fbed0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 20 deletions

View file

@ -28,11 +28,5 @@ namespace Ombi.Store.Entities
return content.OfType<PlexServerContent>().FirstOrDefault(
x => x.Key == this.PlexSeries.Key);
}
public override bool IsIn(IMediaServerContent content)
{
return content.Episodes.Cast<PlexEpisode>().Any(x => x.Key == this.Key);
}
}
}