Fix for Issue #33: onReceivedError incorrectly sets openExternal to true

This commit is contained in:
macdonst 2011-11-25 05:28:15 +08:00 committed by Joe Bowser
parent 5ceb6e2cfa
commit e77e552293

View File

@ -1592,7 +1592,7 @@ public class DroidGap extends PhonegapActivity {
// Load URL on UI thread
me.runOnUiThread(new Runnable() {
public void run() {
me.showWebPage(errorUrl, true, true, null);
me.showWebPage(errorUrl, false, true, null);
}
});
}