From eec76e8e304e3fadf17853a33f560f11dc9eb8f2 Mon Sep 17 00:00:00 2001 From: Jerry Aldrich Date: Sat, 27 Jun 2020 00:33:27 -0700 Subject: [PATCH] Change "Loading..." to "Fetching..." in places --- player.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/player.html b/player.html index 05205b0..26067c2 100644 --- a/player.html +++ b/player.html @@ -258,8 +258,8 @@ streamLines.push(titleLine) if (songName == "" && listeners == "" && streamURL != "") { - songNameLine = buildLine(width, "Loading...", " Song Title: ") - listenersLine = buildLine(width, "Loading...", " Listeners: ") + songNameLine = buildLine(width, "Fetching...", " Song Title: ") + listenersLine = buildLine(width, "Fetching...", " Listeners: ") streamLines.push("|" + " ".repeat(width - 2) + "|") streamLines.push(songNameLine) @@ -273,7 +273,7 @@ if (songName == "" && listeners != "") { streamLines.push("|" + " ".repeat(width - 2) + "|") - songNameLine = buildLine(width, "Loading...", " Song Title: ") + songNameLine = buildLine(width, "Fetching...", " Song Title: ") streamLines.push(songNameLine) streamLines.push(listenersLine) } else if (listeners != "") {