mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix plugin id comparison
This commit is contained in:
parent
dabf257778
commit
86d15e145f
@ -21,13 +21,13 @@ namespace MediaBrowser.WebDashboard.Api
|
|||||||
/// Gets or sets the plugin id.
|
/// Gets or sets the plugin id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The plugin id.</value>
|
/// <value>The plugin id.</value>
|
||||||
public Guid PluginId { get; set; }
|
public string PluginId { get; set; }
|
||||||
|
|
||||||
public ConfigurationPageInfo(IPluginConfigurationPage page)
|
public ConfigurationPageInfo(IPluginConfigurationPage page)
|
||||||
{
|
{
|
||||||
Name = page.Name;
|
Name = page.Name;
|
||||||
ConfigurationPageType = page.ConfigurationPageType;
|
ConfigurationPageType = page.ConfigurationPageType;
|
||||||
PluginId = page.Plugin.Id;
|
PluginId = page.Plugin.Id.ToString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user