aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins
diff options
context:
space:
mode:
authorClaus Vium <cvium@users.noreply.github.com>2021-06-07 23:09:50 +0200
committerGitHub <noreply@github.com>2021-06-07 23:09:50 +0200
commited2f08d05f4cbca50949c0c26d7d099cbbf0d8e0 (patch)
treeefab412d5f2850b3fd45e8d8f06880d1aa61722f /Emby.Server.Implementations/Plugins
parent93387ba235fc86861d4cf24c582f49fb33bb0787 (diff)
parentc78457e6d3880969fd89d826706c7cde43f5c289 (diff)
Merge pull request #6156 from Bond-009/minor14
Minor fixes
Diffstat (limited to 'Emby.Server.Implementations/Plugins')
-rw-r--r--Emby.Server.Implementations/Plugins/PluginManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs
index 16a2bd615..8fd61f2bc 100644
--- a/Emby.Server.Implementations/Plugins/PluginManager.cs
+++ b/Emby.Server.Implementations/Plugins/PluginManager.cs
@@ -394,7 +394,7 @@ namespace Emby.Server.Implementations.Plugins
Category = packageInfo.Category,
Changelog = versionInfo.Changelog ?? string.Empty,
Description = packageInfo.Description,
- Id = new Guid(packageInfo.Id),
+ Id = packageInfo.Id,
Name = packageInfo.Name,
Overview = packageInfo.Overview,
Owner = packageInfo.Owner,