CB-12560: (android) fix null pointer with callback when loading multiple urls
This commit is contained in:
parent
0f5de8524f
commit
fc08376ee1
@ -259,7 +259,7 @@ public class InAppBrowser extends CordovaPlugin {
|
|||||||
});
|
});
|
||||||
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK);
|
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK);
|
||||||
pluginResult.setKeepCallback(true);
|
pluginResult.setKeepCallback(true);
|
||||||
this.callbackContext.sendPluginResult(pluginResult);
|
callbackContext.sendPluginResult(pluginResult);
|
||||||
}
|
}
|
||||||
else if (action.equals("hide")) {
|
else if (action.equals("hide")) {
|
||||||
this.cordova.getActivity().runOnUiThread(new Runnable() {
|
this.cordova.getActivity().runOnUiThread(new Runnable() {
|
||||||
@ -270,7 +270,7 @@ public class InAppBrowser extends CordovaPlugin {
|
|||||||
});
|
});
|
||||||
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK);
|
PluginResult pluginResult = new PluginResult(PluginResult.Status.OK);
|
||||||
pluginResult.setKeepCallback(true);
|
pluginResult.setKeepCallback(true);
|
||||||
this.callbackContext.sendPluginResult(pluginResult);
|
callbackContext.sendPluginResult(pluginResult);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return false;
|
return false;
|
||||||
@ -869,12 +869,13 @@ public class InAppBrowser extends CordovaPlugin {
|
|||||||
* @param status the status code to return to the JavaScript environment
|
* @param status the status code to return to the JavaScript environment
|
||||||
*/
|
*/
|
||||||
private void sendUpdate(JSONObject obj, boolean keepCallback, PluginResult.Status status) {
|
private void sendUpdate(JSONObject obj, boolean keepCallback, PluginResult.Status status) {
|
||||||
if (callbackContext != null) {
|
final CallbackContext localCallbackContext = callbackContext;
|
||||||
|
if (localCallbackContext != null) {
|
||||||
PluginResult result = new PluginResult(status, obj);
|
PluginResult result = new PluginResult(status, obj);
|
||||||
result.setKeepCallback(keepCallback);
|
result.setKeepCallback(keepCallback);
|
||||||
callbackContext.sendPluginResult(result);
|
localCallbackContext.sendPluginResult(result);
|
||||||
if (!keepCallback) {
|
if (!keepCallback) {
|
||||||
callbackContext = null;
|
this.callbackContext = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user