Skip to content

Commit

Permalink
Fixes #1548: dont show again failed setting save
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jun 22, 2021
1 parent 15e50e8 commit 0d39487
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

### Fixed

- Fixes [#1548](https://github.com/eamodio/vscode-gitlens/issues/1548) - "Don't show again" on debug log warning doesn't work
- Fixes [#1449](https://github.com/eamodio/vscode-gitlens/issues/1449) - Configured remotes not showing up in quickpick menu when opening commit on remote
- Fixes issues where auto-linking of GitHub 3rd party issue links didn't always work
- Fixes issue with long commit messages on rebase editor
Expand Down
2 changes: 1 addition & 1 deletion src/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export class Messages {
}

private static suppressedMessage(suppressionKey: SuppressedMessages) {
const messages = configuration.get('advanced.messages');
const messages = { ...configuration.get('advanced.messages') };

messages[suppressionKey] = true;

Expand Down

0 comments on commit 0d39487

Please sign in to comment.