Skip to content

Commit 16f0bb7

Browse files
authored
Fixes plus features flag toggling (#3474)
* Provides correct value to setProFeaturesVisibility * Update CHANGELOG.md
1 parent d836efd commit 16f0bb7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
4545
- Fixes issues where a merge or rebase operation says there or no changes when there are changes
4646
- Fixes an error with queries that can cause Jira Cloud and other cloud integrations to stop working
4747
- Fixes issues with some directory comparison commands
48+
- Fixes [#3473](https://github.com/gitkraken/vscode-gitlens/issues/3473) - Plus features can't be restored after they are hidden
4849

4950
## [15.2.3] - 2024-07-26
5051

src/plus/gk/account/subscriptionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ export class SubscriptionService implements Disposable {
632632
);
633633
}
634634

635-
void configuration.updateEffective('plusFeatures.enabled', false);
635+
void configuration.updateEffective('plusFeatures.enabled', visible);
636636
}
637637

638638
@log()

0 commit comments

Comments
 (0)