mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 03:42:10 +02:00
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
This commit is contained in:
commit
76fe2c061e
1 changed files with 2 additions and 2 deletions
|
|
@ -21,13 +21,13 @@ namespace MediaBrowser.WebDashboard.Api
|
|||
/// Gets or sets the plugin id.
|
||||
/// </summary>
|
||||
/// <value>The plugin id.</value>
|
||||
public Guid PluginId { get; set; }
|
||||
public string PluginId { get; set; }
|
||||
|
||||
public ConfigurationPageInfo(IPluginConfigurationPage page)
|
||||
{
|
||||
Name = page.Name;
|
||||
ConfigurationPageType = page.ConfigurationPageType;
|
||||
PluginId = page.Plugin.Id;
|
||||
PluginId = page.Plugin.Id.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue