mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix id's of missing episodes
This commit is contained in:
parent
b02bb92275
commit
17d9db9308
@ -298,7 +298,7 @@ namespace MediaBrowser.Providers.TV
|
|||||||
ParentIndexNumber = seasonNumber,
|
ParentIndexNumber = seasonNumber,
|
||||||
Parent = season,
|
Parent = season,
|
||||||
DisplayMediaType = typeof(Episode).Name,
|
DisplayMediaType = typeof(Episode).Name,
|
||||||
Id = (series.Id + name).GetMBId(typeof(Episode))
|
Id = (series.Id + seasonNumber.ToString(UsCulture) + name).GetMBId(typeof(Episode))
|
||||||
};
|
};
|
||||||
|
|
||||||
await season.AddChild(episode, cancellationToken).ConfigureAwait(false);
|
await season.AddChild(episode, cancellationToken).ConfigureAwait(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user