display sync services
This commit is contained in:
parent
5d9ab74e75
commit
ba20bdcc2a
|
@ -325,7 +325,7 @@ namespace MediaBrowser.Common.Plugins
|
||||||
AssemblyFileName = AssemblyFileName,
|
AssemblyFileName = AssemblyFileName,
|
||||||
ConfigurationDateLastModified = ConfigurationDateLastModified,
|
ConfigurationDateLastModified = ConfigurationDateLastModified,
|
||||||
Description = Description,
|
Description = Description,
|
||||||
Id = Id.ToString("N"),
|
Id = Id.ToString(),
|
||||||
ConfigurationFileName = ConfigurationFileName
|
ConfigurationFileName = ConfigurationFileName
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,9 @@ namespace MediaBrowser.WebDashboard.Api
|
||||||
{
|
{
|
||||||
Name = page.Name;
|
Name = page.Name;
|
||||||
ConfigurationPageType = page.ConfigurationPageType;
|
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