We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 172e9cc commit c500636Copy full SHA for c500636
Sources/metamask-ios-sdk/Classes/Communication/SocketClient.swift
@@ -266,7 +266,6 @@ private extension SocketClient {
266
let msg = message["message"] as? [String: Any],
267
let type = msg["type"] as? String,
268
type.contains("key_handshake") {
269
- handleReceiveKeyExchange(message)
270
return true
271
}
272
@@ -315,6 +314,7 @@ private extension SocketClient {
315
314
316
func handleMessage(_ msg: [String: Any]) {
317
if isKeyExchangeMessage(msg) {
+ handleReceiveKeyExchange(msg)
318
return
319
320
0 commit comments