fix: ignore IsHide (#973)

This commit is contained in:
Aireil 2022-08-24 09:14:19 +02:00 committed by GitHub
parent 36955ed008
commit 2c7ce6da61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -258,6 +258,8 @@ internal partial class PluginManager : IDisposable, IServiceType
if (configuration.HiddenPluginInternalName.Contains(manifest.InternalName))
return false;
return true; // TODO temporary
// Hidden by manifest
return !manifest.IsHide;
}