mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-31 17:41:29 +00:00
Fix duplication of remote trailers
This commit is contained in:
parent
3b486fc0ee
commit
112db30ff2
1 changed files with 1 additions and 1 deletions
|
|
@ -312,7 +312,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
|
|||
var trailers = new List<MediaUrl>();
|
||||
for (var i = 0; i < movieResult.Videos.Results.Count; i++)
|
||||
{
|
||||
var video = movieResult.Videos.Results[0];
|
||||
var video = movieResult.Videos.Results[i];
|
||||
if (!TmdbUtils.IsTrailerType(video))
|
||||
{
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue