From aa8fe9498fc3bac03b3871f12ad11fc946ae05a0 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 16 Aug 2024 03:11:16 -0600 Subject: [PATCH] Update - Use cached URL for nwrstreams --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 2af4e02..096b028 100644 --- a/index.js +++ b/index.js @@ -265,9 +265,9 @@ const curUUID = generateUUID(); // nwrstreams setup -// get icecast json data http://ingest.wxr.gwes-cdn.net/status-json.xsl +// get icecast json data const fetchNWRstreams = () => { - fetch("http://ingest.wxr.gwes-cdn.net/status-json.xsl").then((res) => { + fetch("https://icestats.weatherradio.org/").then((res) => { res.json().then((json) => { json.icestats.source.forEach((source) => { nwrstreams.callsigns[source.server_name] = source.listenurl;