From f9c89dffcc86413f8f855c95b49f6e068b419a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Pich?= Date: Thu, 14 Jun 2018 16:59:14 +0200 Subject: [PATCH] Fix dev version name --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 08283fc..7c0fe32 100644 --- a/app.js +++ b/app.js @@ -31,7 +31,7 @@ addButtonInfo("https://bitrise-redirector.herokuapp.com/v0.1/apps/daeff1893f3c81 function(button, version, res) { var json = JSON.parse(res.responseText); button.href = json.expiring_download_url; - version.innerHTML = "v" + json.build_number; + version.innerHTML = "Build" + json.build_number; setTimeout(function() { button.href = json.public_install_page_url;