Fix error not handled in message_relay (android)

This commit is contained in:
Ming Ming 2023-09-07 00:27:46 +08:00
parent 53802f0211
commit 765b102bcd

View file

@ -25,6 +25,10 @@ internal class MessageRelayChannelHandler : MethodChannel.MethodCallHandler,
result.error("systemException", e.toString(), null)
}
}
else -> {
result.notImplemented()
}
}
}