mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Treat bundled extensions as enabled in protocol router (#3148)
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
572d60025e
commit
65b9e74d45
@ -187,7 +187,7 @@ export abstract class LensProtocolRouter extends Singleton {
|
||||
return name;
|
||||
}
|
||||
|
||||
if (!ExtensionsStore.getInstance().isEnabled(extension.id)) {
|
||||
if (!extension.isBundled && !ExtensionsStore.getInstance().isEnabled(extension.id)) {
|
||||
logger.info(`${LensProtocolRouter.LoggingPrefix}: Extension ${name} matched, but not enabled`);
|
||||
|
||||
return name;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user