From dbba53c0fa90ee10a2848c7d58327f6ad1db4404 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Wed, 6 Mar 2024 04:44:55 +0400 Subject: [PATCH] Fixed a typo on a description for -fallback-song arg. --- cmd/dwelling-radio/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/dwelling-radio/main.go b/cmd/dwelling-radio/main.go index 2e2d3cc..7eb9e7b 100644 --- a/cmd/dwelling-radio/main.go +++ b/cmd/dwelling-radio/main.go @@ -20,7 +20,7 @@ var ( listenAddress = flag.String("listen", "/var/run/dwelling-radio/sock", "listen address (ip:port|unix_path)") filelistPath = flag.String("filelist", "/mnt/data/appdata/radio/filelist.html", "path to a filelist.html file") playlist = flag.String("playlist", "", "path to a playlist") - fallbackSong = flag.String("fallback-song", "", "path to a fallbacl song") + fallbackSong = flag.String("fallback-song", "", "path to a fallback song") mostListenedSongPath = flag.String("mls-file", "/mnt/data/appdata/radio/mostlistenedsong", "path to a file that stores info about the most listened song") songListLen = flag.Int("list-length", 10, "number of songs to show in last N songs table")