We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b018eb8 commit 66f0574Copy full SHA for 66f0574
src/dropbox-base.js
@@ -290,7 +290,7 @@ client_id=${clientId}&client_secret=${clientSecret}`;
290
const browser = window.open(url, '_blank');
291
292
function onLoadError(event) {
293
- if (event.code != -999) { // Workaround to fix wrong behavior on cordova-plugin-inappbrowser
+ if (event.code !== -999) { // Workaround to fix wrong behavior on cordova-plugin-inappbrowser
294
// Try to avoid a browser crash on browser.close().
295
window.setTimeout(() => { browser.close(); }, 10);
296
errorCallback();
0 commit comments