1
0
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:
Sebastian Malton 2021-06-22 09:59:53 -04:00 committed by GitHub
parent 572d60025e
commit 65b9e74d45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,7 @@ export abstract class LensProtocolRouter extends Singleton {
return name; 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`); logger.info(`${LensProtocolRouter.LoggingPrefix}: Extension ${name} matched, but not enabled`);
return name; return name;