From cdd44af043e0108a90bf22d17b0ebabf776fb5c0 Mon Sep 17 00:00:00 2001
From: Jack <jack@robisonservice.com>
Date: Wed, 13 Apr 2016 02:39:50 -0400
Subject: [PATCH] fix links in LBRYDaemonControl

https was failing
---
 lbrynet/lbrynet_daemon/LBRYDaemonControl.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lbrynet/lbrynet_daemon/LBRYDaemonControl.py b/lbrynet/lbrynet_daemon/LBRYDaemonControl.py
index ada6fa83f..86c2699e7 100644
--- a/lbrynet/lbrynet_daemon/LBRYDaemonControl.py
+++ b/lbrynet/lbrynet_daemon/LBRYDaemonControl.py
@@ -78,11 +78,11 @@ def start():
 
     if args.branch == "HEAD":
         GIT_CMD_STRING = "git ls-remote https://github.com/lbryio/lbry-web-ui.git | grep %s | cut -f 1" % args.branch
-        DIST_URL = "https://rawgit.com/lbryio/lbry-web-ui/master/dist.zip"
+        DIST_URL = "http://rawgit.com/lbryio/lbry-web-ui/master/dist.zip"
     else:
         log.info("Using UI branch: " + args.branch)
         GIT_CMD_STRING = "git ls-remote https://github.com/lbryio/lbry-web-ui.git | grep refs/heads/%s | cut -f 1" % args.branch
-        DIST_URL = "https://rawgit.com/lbryio/lbry-web-ui/%s/dist.zip" % args.branch
+        DIST_URL = "http://rawgit.com/lbryio/lbry-web-ui/%s/dist.zip" % args.branch
 
     def getui(ui_dir=None):
         if ui_dir: