diff --git a/modules/rss.go b/modules/rss.go index 2aaad5d..6944d96 100644 --- a/modules/rss.go +++ b/modules/rss.go @@ -78,7 +78,7 @@ func rssItemHandler(feed *gorss.Feed, ch *gorss.Channel, newitems []*gorss.Item) short := "" if len(ti) > 80 { runes := []rune(ti) - short = string(runes[0:80]) + short = string(runes[0:80]) + " [...]" } else { short = ti }