fix reference to builds URL for sandbox check

This commit is contained in:
Stephen Birarda 2018-06-12 16:06:17 -07:00
parent 7a9d77d0d9
commit 4713d8d44c

View file

@ -58,7 +58,7 @@ util.inherits(UpdateChecker, events.EventEmitter);
UpdateChecker.prototype = extend(UpdateChecker.prototype, {
checkForUpdates: function() {
log.debug("Checking for updates");
request(BUILDS_URL, (error, response, body) => {
request(this.buildsURL, (error, response, body) => {
if (error) {
log.debug("Error", error);
return;