Skip to content

Commit

Permalink
fix: [android] Fix acceptRemoteInvitation return error code -1 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
littleGnAl authored Jun 27, 2023
1 parent 2d223d9 commit a8481ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android/src/main/kotlin/io/agora/agorartm/Extensions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ fun LocalInvitation.toJson(): Map<String, Any?> {
"channelId" to channelId,
"response" to response,
"state" to state,
"hashCode" to hashCode(),
)
}

Expand All @@ -108,6 +109,7 @@ fun RemoteInvitation.toJson(): Map<String, Any?> {
"channelId" to channelId,
"response" to response,
"state" to state,
"hashCode" to hashCode(),
)
}

Expand Down

0 comments on commit a8481ec

Please sign in to comment.