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

Commit 60fa3d1

Browse files
committed
Fix another npath comparison
1 parent 8176125 commit 60fa3d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Api/Application/ApplicationManagerBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void Run(bool firstRun)
9191
setupTask.Progress(progressReporter.UpdateProgress);
9292
setupTask.OnEnd += (thisTask, result, success, exception) =>
9393
{
94-
if (success && result != null)
94+
if (success && result.IsInitialized)
9595
thisTask.Then(initEnvironmentTask);
9696
else
9797
thisTask.Then(findExecTask);

0 commit comments

Comments
 (0)