From 9b35df7ffe3d6a847cec000e7d75e296572f888d Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Tue, 21 Mar 2017 18:51:53 -0400 Subject: [PATCH] use same http/https choice as lp static page so that the api resource will be loaded with the same method, solving the mixed content error. --- 2017/assets/js/stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2017/assets/js/stream.js b/2017/assets/js/stream.js index a3551ac5..8aa68954 100644 --- a/2017/assets/js/stream.js +++ b/2017/assets/js/stream.js @@ -48,7 +48,7 @@ var app = {}; app.icecastUrl = "http://live2.fsf.org"; -app.icecastApiUrl = "http://live2.fsf.org"; +app.icecastApiUrl = "//live2.fsf.org"; app.scheduleEvery = function(duration, thunk) { thunk(); -- 2.25.1