mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
update components
This commit is contained in:
parent
9b98d8b2e1
commit
74f511b2ee
@ -39,6 +39,20 @@ namespace MediaBrowser.Providers.TV
|
||||
updateType |= ItemUpdateType.MetadataImport;
|
||||
}
|
||||
}
|
||||
if (updateType <= ItemUpdateType.None)
|
||||
{
|
||||
if (item.SeriesId != item.FindSeriesId())
|
||||
{
|
||||
updateType |= ItemUpdateType.MetadataImport;
|
||||
}
|
||||
}
|
||||
if (updateType <= ItemUpdateType.None)
|
||||
{
|
||||
if (item.SeasonId != item.FindSeasonId())
|
||||
{
|
||||
updateType |= ItemUpdateType.MetadataImport;
|
||||
}
|
||||
}
|
||||
|
||||
return updateType;
|
||||
}
|
||||
|
@ -49,6 +49,13 @@ namespace MediaBrowser.Providers.TV
|
||||
updateType |= ItemUpdateType.MetadataImport;
|
||||
}
|
||||
}
|
||||
if (updateType <= ItemUpdateType.None)
|
||||
{
|
||||
if (item.SeriesId != item.FindSeriesId())
|
||||
{
|
||||
updateType |= ItemUpdateType.MetadataImport;
|
||||
}
|
||||
}
|
||||
|
||||
return updateType;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user