changeset 226:0ff78e418e77

feeds: Don't add # to channel names automatically.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 01 Dec 2014 11:30:44 +0200
parents cb86368b8fcd
children d0fb1546d73f
files feeds.tcl
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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"
       }
     }
   }