# HG changeset patch # User Matti Hamalainen # Date 1417426244 -7200 # Node ID 0ff78e418e7779774f3d28c1cdef3088f442b9a1 # Parent cb86368b8fcd3eea906d65cd79a94a462a43787e feeds: Don't add # to channel names automatically. diff -r cb86368b8fcd -r 0ff78e418e77 feeds.tcl --- a/feeds.tcl Mon Dec 01 11:11:50 2014 +0200 +++ b/feeds.tcl Mon Dec 01 11:30:44 2014 +0200 @@ -24,12 +24,12 @@ set feeds_check_period 5 # Set channels and feed filters here: -# "channel" "feedname|feedname2" +# "#channel" "feedname|feedname2" # feednames can use matching, e.g. "mtv3*" would match all beginning with "mtv3" array set feeds_channels { - "mazmlame" "the adventurers|oots|mestari|blastwave" - "fireball" "mestari" - "tnsp" "the adventurers|oots|mestari" + "#mazmlame" "the adventurers|oots|mestari|blastwave" + "#fireball" "mestari" + "#tnsp" "the adventurers|oots|mestari" } @@ -67,7 +67,7 @@ foreach {uchan ufilter} [array get feeds_channels] { foreach umatch [split $ufilter "|"] { if {[string match -nocase $umatch $ufeed]} { - feeds_smsg "#$uchan" "$ufeed: \002$utitle\002 -- $uurl" + feeds_smsg "$uchan" "$ufeed: \002$utitle\002 -- $uurl" } } }