Skip to content

Commit

Permalink
Allow ResponseWithReturnValueInPayload to be passed into dtxConnectio…
Browse files Browse the repository at this point in the history
…n.Dispatch (#552)
  • Loading branch information
cziter15 authored Jan 24, 2025
1 parent eb39dd8 commit 376dba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/dtx_codec/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (g GlobalDispatcher) Dispatch(msg Message) {
if msg.HasError() {
log.Error(msg.Payload[0])
}
if msg.PayloadHeader.MessageType == UnknownTypeOne {
if msg.PayloadHeader.MessageType == UnknownTypeOne || msg.PayloadHeader.MessageType == ResponseWithReturnValueInPayload {
g.dtxConnection.Dispatch(msg)
}
}
Expand Down

0 comments on commit 376dba1

Please sign in to comment.