forked from github/cordova-android
Revert to polling if there are any errors with callback server. This addresses various problems with proxies set by carriers.
This commit is contained in:
parent
b059a31787
commit
c96c9b00b9
@ -805,13 +805,11 @@ PhoneGap.JSCallback = function() {
|
|||||||
console.log("JSCallback Error: Bad request. Stopping callbacks.");
|
console.log("JSCallback Error: Bad request. Stopping callbacks.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// If error, restart callback server
|
// If error, revert to polling
|
||||||
else {
|
else {
|
||||||
console.log("JSCallback Error: Request failed.");
|
console.log("JSCallback Error: Request failed.");
|
||||||
prompt("restartServer", "gap_callbackServer:");
|
PhoneGap.UsePolling = true;
|
||||||
PhoneGap.JSCallbackPort = null;
|
PhoneGap.JSCallbackPolling();
|
||||||
PhoneGap.JSCallbackToken = null;
|
|
||||||
setTimeout(PhoneGap.JSCallback, 100);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user