Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into polish-pr-template-picker
  • Loading branch information
joaomoreno authored Jun 10, 2022
commit f920cc3d85a6b7815675dbc3ca3adc48616a5670
2 changes: 1 addition & 1 deletion extensions/github/src/pushErrorHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function handlePushError(repository: Repository, remote: Remote, refspec:
const askFork = localize('fork', "You don't have permissions to push to '{0}/{1}' on GitHub. Would you like to create a fork and push to it instead?", owner, repo);

const answer = await window.showInformationMessage(askFork, yes, no);
if (answer === no) {
if (answer !== yes) {
return;
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.