Skip to content

Commit

Permalink
Merge branch 'master' into discard_after_close
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane32 authored Oct 20, 2024
2 parents 6f7d462 + 2d2ab4c commit d470353
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ public override async Task OnMessageReceivedAsync(OperationMessage message)
/// Executes when a ping message is received.
/// </summary>
protected virtual Task OnPingAsync(OperationMessage message)
=> Connection.SendMessageAsync(_pongMessage);
=> message.Payload == null
? Connection.SendMessageAsync(_pongMessage)
: Connection.SendMessageAsync(new OperationMessage { Type = MessageType.Pong, Payload = message.Payload });

/// <summary>
/// Executes when a pong message is received.
Expand Down

0 comments on commit d470353

Please sign in to comment.