Skip to content

Commit

Permalink
fix: removed added whitespace trail
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek committed Sep 15, 2023
1 parent 7cce92c commit 92d1014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/android/InAppBrowser.java
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ private void sendUpdate(JSONObject obj, boolean keepCallback) {
private void sendUpdate(JSONObject obj, boolean keepCallback, PluginResult.Status status) {
if (callbackContext != null) {
PluginResult result = new PluginResult(status, obj);
result.setKeepCallback(keepCallback);
result.setKeepCallback(keepCallback);
callbackContext.sendPluginResult(result);
if (!keepCallback) {
callbackContext = null;
Expand Down

0 comments on commit 92d1014

Please sign in to comment.