Skip to content

Commit

Permalink
fix nullref
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Oct 26, 2023
1 parent 20af461 commit 49bef2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proto.Actor/Context/ActorContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public Task InvokeSystemMessageAsync(SystemMessage msg)
Unwatch uw => HandleUnwatch(uw),
Failure f => HandleFailureAsync(f),
Restart => HandleRestartAsync(),
SuspendMailbox or ResumeMailbox => default,
SuspendMailbox or ResumeMailbox => Task.CompletedTask,
Continuation cont => HandleContinuation(cont),
ProcessDiagnosticsRequest pdr => HandleProcessDiagnosticsRequest(pdr),
ReceiveTimeout _ => HandleReceiveTimeout(),
Expand Down

0 comments on commit 49bef2c

Please sign in to comment.