From 1ded8c1c577fff584e83575ae111e7f0cb765cd6 Mon Sep 17 00:00:00 2001 From: Arpit Vasani Date: Thu, 6 Jun 2019 17:37:13 +0530 Subject: [PATCH] not sure what is happning to google. it is throwing 404. --- src/detectRev.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detectRev.js b/src/detectRev.js index 42f72ed..00c1f8a 100644 --- a/src/detectRev.js +++ b/src/detectRev.js @@ -22,7 +22,7 @@ this.getRevNumber = function () { .then(res => res.json()) .then(json => { //console.log(json); - var betaChannel = json[0].versions.find(x => x.channel == "stable").branch_base_position; + var betaChannel = json[0].versions.find(x => x.channel == "canary").branch_base_position; resolve(betaChannel); }); })