From f6d0585ba761831c3015c4f5d7b30933f8718c0d Mon Sep 17 00:00:00 2001 From: kimihiro64 Date: Mon, 18 Jul 2016 09:40:52 -0500 Subject: [PATCH] Change update location Needs to be https://www.lbry.io/get. For some reason if it's non https, it redirects to https://www.lbry.io/news/get. --- js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/app.js b/js/app.js index ef6dc5cbe..1daefe25e 100644 --- a/js/app.js +++ b/js/app.js @@ -36,7 +36,7 @@ var App = React.createClass({ if (window.confirm(message)) { lbry.stop(); - window.location = 'http://www.lbry.io/get'; + window.location = 'https://www.lbry.io/get'; }; }); }); @@ -60,4 +60,4 @@ var App = React.createClass({ return ; } } -}); \ No newline at end of file +});