Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Unified Diff: remoting/webapp/host_installer.js

Issue 615803002: Fix typo in host_installer.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/host_installer.js
diff --git a/remoting/webapp/host_installer.js b/remoting/webapp/host_installer.js
index 6983a5679176446cd4e636795bd2c3c9fb621c90..48e62a2cbad4ef956c49c1bb5839fdf8ba4c2782 100644
--- a/remoting/webapp/host_installer.js
+++ b/remoting/webapp/host_installer.js
@@ -128,7 +128,7 @@ remoting.HostInstaller.prototype.downloadAndWaitForInstall = function() {
return Promise.resolve(true);
}
- if (that.downloadAndWaitForInstallPromise_ !== null) {
+ if (that.downloadAndWaitForInstallPromise_ === null) {
that.downloadAndWaitForInstallPromise_ = new Promise(
/** @param {Function} resolve */
function(resolve){
@@ -160,4 +160,4 @@ remoting.HostInstaller.prototype.cancel = function() {
this.checkInstallIntervalId_ = null;
}
this.downloadAndWaitForInstallPromise_ = null;
-};
+};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698