Skip to content
Merged
Changes from all commits
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
4 changes: 3 additions & 1 deletion app/src/ui/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ export class App extends React.Component<IAppProps, IAppState> {
// Disable autoupdates so that the app doesn't revert to the desktop/desktop upstream whenever there is an update.
}

private updateBranchWithContributionTargetBranch() {
private async updateBranchWithContributionTargetBranch() {
const { selectedState } = this.state
if (
selectedState == null ||
Expand All @@ -659,6 +659,8 @@ export class App extends React.Component<IAppProps, IAppState> {
return
}

await this.props.dispatcher.fetch(repository, FetchType.UserInitiatedTask)

this.props.dispatcher.initializeMergeOperation(
repository,
false,
Expand Down
Loading