Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit a94e297

Browse files
committed
Fix build
1 parent aeb4469 commit a94e297

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.VisualStudio/UI/Views/GitHubPaneViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ async Task Reload([AllowNull] ViewWithData data = null, bool navigating = false)
131131
return;
132132
}
133133

134-
if (uiController == null || (data != null && data.ActiveFlow != uiController.SelectedFlow))
134+
if (uiController == null || (data != null && data.ActiveFlow != uiController.CurrentFlow))
135135
StartFlow(data?.ActiveFlow ?? UIControllerFlow.PullRequests, connection, data);
136136
else if (data != null || currentNavItem >= 0)
137137
uiController.Jump(data ?? navStack[currentNavItem]);

0 commit comments

Comments
 (0)