Skip to content

Commit

Permalink
EnsureSettingsUpdated returning null for Task
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw committed Mar 29, 2022
1 parent 8d70a37 commit b67c1eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MIDebugEngine/Engine.Impl/ExceptionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public Task EnsureSettingsUpdated()
// If we are still delaying our processing, stop delaying it
_updateDelayCancelSource.Cancel();

return _updateTask;
return _updateTask ?? Task.CompletedTask;
}
else if (!_initialSettingssSent && _categoryMap.Count > 0)
{
Expand Down

0 comments on commit b67c1eb

Please sign in to comment.