switch from ws:// to wss://

This commit is contained in:
Thomas Steen Rasmussen 2019-01-21 20:06:52 +01:00
parent b8fb36d346
commit 58f3035927
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ var elm_app = Elm.Main.embed(
, 'schedule_midnight_offset_hours': Number('{{ schedule_midnight_offset_hours }}')
, 'ics_button_href': "{% url 'program:ics_view' camp_slug=camp.slug %}"
, 'camp_slug': "{{ camp.slug }}"
, 'websocket_server': "ws://" + window.location.host + "/schedule/"
, 'websocket_server': "wss://" + window.location.host + "/schedule/"
}
);
</script>