mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Merge pull request #11933 from Shadowghost/fix-trailer-duplication
Check trailer distinction by URL
This commit is contained in:
commit
b1a5fe2f55
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ namespace MediaBrowser.Providers.Manager
|
|||
}
|
||||
else
|
||||
{
|
||||
target.RemoteTrailers = target.RemoteTrailers.Concat(source.RemoteTrailers).Distinct().ToArray();
|
||||
target.RemoteTrailers = target.RemoteTrailers.Concat(source.RemoteTrailers).DistinctBy(t => t.Url).ToArray();
|
||||
}
|
||||
|
||||
MergeAlbumArtist(source, target, replaceData);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue