mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07: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
@ -2633,6 +2633,7 @@ namespace MediaBrowser.Controller.Entities
|
|||||||
{
|
{
|
||||||
return new T
|
return new T
|
||||||
{
|
{
|
||||||
|
Path = Path,
|
||||||
MetadataCountryCode = GetPreferredMetadataCountryCode(),
|
MetadataCountryCode = GetPreferredMetadataCountryCode(),
|
||||||
MetadataLanguage = GetPreferredMetadataLanguage(),
|
MetadataLanguage = GetPreferredMetadataLanguage(),
|
||||||
Name = GetNameForMetadataLookup(),
|
Name = GetNameForMetadataLookup(),
|
||||||
|
@ -14,6 +14,12 @@ namespace MediaBrowser.Controller.Providers
|
|||||||
/// <value>The name.</value>
|
/// <value>The name.</value>
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the path.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The path.</value>
|
||||||
|
public string Path { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the metadata language.
|
/// Gets or sets the metadata language.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user