mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 13:13:36 +02:00
Add the item path to the ItemLookupInfo class.
This is important for the Shoko Anime Meatdata provider plugin.
This commit is contained in:
parent
191f109da9
commit
208b00fbb1
2 changed files with 7 additions and 0 deletions
|
|
@ -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…
Reference in a new issue