Merge pull request #5848 from sgmoore/IndexError

Fix ArgumentOutOfRangeException scanning AudioBooks
pull/5859/head
Claus Vium 3 years ago committed by GitHub
commit 665220c4fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -201,6 +201,11 @@ namespace Emby.Server.Implementations.Library.Resolvers.Audio
continue;
}
if (resolvedItem.Files.Count == 0)
{
continue;
}
var firstMedia = resolvedItem.Files[0];
var libraryItem = new T

Loading…
Cancel
Save