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:
Bryce Curtis 2011-06-27 13:48:02 -05:00
parent b059a31787
commit c96c9b00b9

View File

@ -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);
} }
} }
}; };