diff --git a/main.go b/main.go index 55ebdee..5a8cbc7 100644 --- a/main.go +++ b/main.go @@ -140,6 +140,6 @@ func HandleMessage(m *irc.Message) { } func SoftwareInfo() string { - return fmt.Sprintf("flokatirc %s-%s (built %s [%])", version.FlokatiVersion, + return fmt.Sprintf("flokatirc %s-%s (built %s [%s])", version.FlokatiVersion, version.FlokatiBuild, version.FlokatiBuilddate, runtime.Version()) } diff --git a/modules/rss.go b/modules/rss.go index 4000082..10b4a5f 100644 --- a/modules/rss.go +++ b/modules/rss.go @@ -66,7 +66,7 @@ func rssPollFeed(uri string, timeout int, cr xmlx.CharsetFunc) { } func rssChanHandler(feed *gorss.Feed, newchannels []*gorss.Channel) { - SayCh <- fmt.Sprintf("%s\n[RSS] %d new channel(s) in %s", "*", len(newchannels), feed.Url) + //SayCh <- fmt.Sprintf("%s\n[RSS] %d new channel(s) in %s", "*", len(newchannels), feed.Url) } func rssItemHandler(feed *gorss.Feed, ch *gorss.Channel, newitems []*gorss.Item) {