now you can comment out stations in stations.txt

This commit is contained in:
Luxferre
2024-10-23 11:19:18 +03:00
parent 38998549b1
commit f255d39dee
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -275,7 +275,7 @@ proc massfetch {echos dbdir dolog} {
set stlist [split [readfile $stfile] "\n"]
foreach station $stlist {
set station [string trim $station]
if {$station ne ""} {
if {$station ne "" && ![string match "#*" $station]} {
if {$dolog eq 1} {puts "Fetching from $station"}
fetchiidb $station $echos $dbdir $dolog
}