diff --git a/apps/desktop/src/main.ts b/apps/desktop/src/main.ts index 2651dedadd..a198967b2d 100644 --- a/apps/desktop/src/main.ts +++ b/apps/desktop/src/main.ts @@ -84,8 +84,8 @@ export class Main { // on ready stuff... }); - app.commandLine.appendSwitch("ignore-certificate-errors"); - app.commandLine.appendSwitch("allow-insecure-localhost", "true"); + // app.commandLine.appendSwitch("ignore-certificate-errors"); + // app.commandLine.appendSwitch("allow-insecure-localhost", "true"); if (appDataPath != null) { app.setPath("userData", appDataPath); diff --git a/libs/common/src/platform/services/config/default-config.service.ts b/libs/common/src/platform/services/config/default-config.service.ts index b0a057acc9..6ecfad02a9 100644 --- a/libs/common/src/platform/services/config/default-config.service.ts +++ b/libs/common/src/platform/services/config/default-config.service.ts @@ -123,9 +123,9 @@ export class DefaultConfigService implements ConfigService { serverConfig: ServerConfig | null, flag: Flag, ) { - if (flag == FeatureFlag.ExtensionRefresh) { - return true as FeatureFlagValueType; - } + // if (flag == FeatureFlag.ExtensionRefresh) { + // return true as FeatureFlagValueType; + // } if (serverConfig?.featureStates == null || serverConfig.featureStates[flag] == null) { return DefaultFeatureFlagValue[flag];