mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 12:40:27 +01:00
rework episode queries
This commit is contained in:
@@ -50,7 +50,7 @@ namespace MediaBrowser.Providers.TV
|
||||
};
|
||||
|
||||
// Allowing this will dramatically increase scan times
|
||||
if (info.IsMissingEpisode || info.IsVirtualUnaired)
|
||||
if (info.IsMissingEpisode)
|
||||
{
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ namespace MediaBrowser.Providers.TV
|
||||
var result = new MetadataResult<Episode>();
|
||||
|
||||
// Allowing this will dramatically increase scan times
|
||||
if (info.IsMissingEpisode || info.IsVirtualUnaired)
|
||||
if (info.IsMissingEpisode)
|
||||
{
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user