mirror of
https://salsa.debian.org/mdosch/feed-to-muc.git
synced 2024-11-22 14:08:39 +01:00
Fixed a typo.
This commit is contained in:
parent
efe8f1a549
commit
bd57fc34d4
1 changed files with 1 additions and 1 deletions
|
@ -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).
|
||||
|
|
Loading…
Reference in a new issue