This commit is contained in:
hrxiang
2021-09-18 10:32:25 +08:00
parent 95c88cb61a
commit be1c10fb38
7 changed files with 15 additions and 13 deletions

View File

@@ -276,12 +276,12 @@ public class CommonUtil {
return getParamValue(methodCall, KEY_MESSAGE_DES);
}
public static byte[] getCustomMessageData(MethodCall methodCall) {
return getParamValue(methodCall, KEY_CUSTOM_MESSAGE_DATA);
public static String getCustomMessageData(MethodCall methodCall) {
return getSDKJsonParam(methodCall, KEY_CUSTOM_MESSAGE_DATA);
}
public static byte[] getCustomMessageExt(MethodCall methodCall) {
return getParamValue(methodCall, KEY_CUSTOM_MESSAGE_EXT);
public static String getCustomMessageExt(MethodCall methodCall) {
return getSDKJsonParam(methodCall, KEY_CUSTOM_MESSAGE_EXT);
}
public static String getQuoteMessageText(MethodCall methodCall) {