display sync services
This commit is contained in:
parent
5d9ab74e75
commit
ba20bdcc2a
|
@ -325,7 +325,7 @@ namespace MediaBrowser.Common.Plugins
|
|||
AssemblyFileName = AssemblyFileName,
|
||||
ConfigurationDateLastModified = ConfigurationDateLastModified,
|
||||
Description = Description,
|
||||
Id = Id.ToString("N"),
|
||||
Id = Id.ToString(),
|
||||
ConfigurationFileName = ConfigurationFileName
|
||||
};
|
||||
|
||||
|
|
|
@ -26,7 +26,9 @@ namespace MediaBrowser.WebDashboard.Api
|
|||
{
|
||||
Name = page.Name;
|
||||
ConfigurationPageType = page.ConfigurationPageType;
|
||||
PluginId = page.Plugin.Id.ToString("N");
|
||||
|
||||
// Don't use "N" because it needs to match Plugin.Id
|
||||
PluginId = page.Plugin.Id.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user