Update Emby.Server.Implementations/Library/LibraryManager.cs

Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Ulrich Wagner 2020-02-19 13:40:06 +01:00 committed by GitHub
parent 4d0ee3f6cc
commit 7005326685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2433,6 +2433,7 @@ namespace Emby.Server.Implementations.Library
if (task.Result.IndexNumber > 0) { if (task.Result.IndexNumber > 0) {
episodeInfo.EpisodeNumber = task.Result.IndexNumber; episodeInfo.EpisodeNumber = task.Result.IndexNumber;
} }
if (!string.IsNullOrEmpty(task.Result.ShowName)) { if (!string.IsNullOrEmpty(task.Result.ShowName)) {
episodeInfo.SeriesName = task.Result.ShowName; episodeInfo.SeriesName = task.Result.ShowName;
} }