Skip to content

Commit

Permalink
hard code extension refresh flag (#12624)
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyality authored Dec 30, 2024
1 parent 8a3c752 commit 6888f3a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ export class DefaultConfigService implements ConfigService {
serverConfig: ServerConfig | null,
flag: Flag,
) {
// bodge the extension refresh flag since it's only partially removed
if (flag === "extension-refresh") {
return true;
}

if (serverConfig?.featureStates == null || serverConfig.featureStates[flag] == null) {
return DefaultFeatureFlagValue[flag];
}
Expand Down

0 comments on commit 6888f3a

Please sign in to comment.