Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 2a106a1

Browse files
Missing nullable operator
1 parent ae0b776 commit 2a106a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Git/RepositoryManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ private void RefreshConfigData()
424424
LoadRemotesFromConfig();
425425

426426
OnActiveBranchChanged?.Invoke(GetActiveBranch());
427-
OnActiveRemoteChanged.Invoke(GetActiveRemote());
427+
OnActiveRemoteChanged?.Invoke(GetActiveRemote());
428428
}
429429

430430
private void LoadBranchesFromConfig()

0 commit comments

Comments
 (0)