Fixed a typo.

This commit is contained in:
mdosch 2019-05-26 21:07:07 +02:00
parent efe8f1a549
commit bd57fc34d4

View file

@ -216,7 +216,7 @@ func getArticles(feedURL string, max int, noExcerpt bool) (string, error) {
description = ""
// Fill article description/content with the fragments separated by one newline.
for _, line := range fragments {
description = description + line + "n"
description = description + line + "\n"
}
// Only append article link if it is not yet contained in description (e.g. read more: URL).