Merge branch 'fix/getPhoneNumber'

master
yangbinqiao 2023-07-14 20:40:11 +08:00
commit e8391b4b5d
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ public class AppletHandlerModule extends BaseApi {
callback.onSuccess(null);
if (phoneNumberCallback != null) {
try {
JSONObject jsonObject = new JSONObject(param.get("phone").toString());
JSONObject jsonObject = new JSONObject(param);
phoneNumberCallback.onSuccess(jsonObject);
} catch (Exception e) {
e.printStackTrace();