diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-21 19:27:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-21 19:27:46 +0200 |
| commit | 11ca3ade86081d8fe8ef535c577660e623ee0e19 (patch) | |
| tree | 25150041dc7d3735d3c37296c691d36450dabcc7 /Emby.Server.Implementations | |
| parent | fa734df82fc487a470e53583f01adccae11a6479 (diff) | |
| parent | 8740f3d154b409ed83f5eb7dd07c82bd520327d1 (diff) | |
Merge pull request #16855 from Shadowghost/fix-local-plugin-images
Fix integrated provider images
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PluginManager.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManager.cs b/Emby.Server.Implementations/Plugins/PluginManager.cs index 91ccb16ef9..f699c99d85 100644 --- a/Emby.Server.Implementations/Plugins/PluginManager.cs +++ b/Emby.Server.Implementations/Plugins/PluginManager.cs @@ -564,7 +564,8 @@ namespace Emby.Server.Implementations.Plugins Id = instance.Id, Status = PluginStatus.Active, Name = instance.Name, - Version = instance.Version.ToString() + Version = instance.Version.ToString(), + ImageResourceName = (instance as IHasEmbeddedImage)?.ImageResourceName }) { Instance = instance |
