Merge pull request #4041 from jellyfin/path-itemlookupinfo

Add the item path to the ItemLookupInfo class
pull/4042/head
Anthony Lavado 4 years ago committed by GitHub
commit f6622c835f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2633,6 +2633,7 @@ namespace MediaBrowser.Controller.Entities
{
return new T
{
Path = Path,
MetadataCountryCode = GetPreferredMetadataCountryCode(),
MetadataLanguage = GetPreferredMetadataLanguage(),
Name = GetNameForMetadataLookup(),

@ -14,6 +14,12 @@ namespace MediaBrowser.Controller.Providers
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
/// Gets or sets the metadata language.
/// </summary>

Loading…
Cancel
Save