Small fixes

This commit is contained in:
Mark Monteiro 2020-04-01 19:04:00 +02:00
parent 4ff8d30e41
commit 377f9896ce
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ namespace Emby.Naming.Video
Regex = 2,
/// <summary>
/// Match <see cref="ExtraRule.Token"/> against the directory name of the file.
/// Match <see cref="ExtraRule.Token"/> against the name of the directory containing the file.
/// </summary>
DirectoryName = 3,
}

View File

@ -381,7 +381,7 @@ namespace MediaBrowser.Api.UserLibrary
var dtoOptions = GetDtoOptions(_authContext, request);
var dtosExtras = item.GetExtras(new ExtraType[] { ExtraType.Trailer })
var dtosExtras = item.GetExtras(new[] { ExtraType.Trailer })
.Select(i => _dtoService.GetBaseItemDto(i, dtoOptions, user, item))
.ToArray();