mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
update components
This commit is contained in:
parent
9b98d8b2e1
commit
74f511b2ee
2 changed files with 21 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue