From bceb88a73518cbceedf5ba67a7321e10f315e026 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 12 Sep 2016 20:13:59 -0700 Subject: [PATCH] fix typo --- cloudron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudron.js b/cloudron.js index b2f9908..514c090 100644 --- a/cloudron.js +++ b/cloudron.js @@ -444,7 +444,7 @@ Cloudron.prototype.setAutoupdatePattern = function (pattern) { }; Cloudron.prototype.checkA = function (callback) { - var expectedIp = this._.isCustomDomain ? this._.staticIp : this._.ip; + var expectedIp = this._isCustomDomain ? this._.staticIp : this._.ip; dns.resolve4(this._box.domain, function (error, records) { if (error) return callback(error);