Fever remove semicolomn from author (#2283)

https://github.com/FreshRSS/FreshRSS/issues/2281
This commit is contained in:
Alexandre Alapetite
2019-03-19 20:08:56 +01:00
committed by GitHub
parent 6323fe5ea0
commit cb00eafba0

View File

@@ -536,7 +536,7 @@ class FeverAPI
'id' => $entry->id(),
'feed_id' => $entry->feed(false),
'title' => escapeToUnicodeAlternative($entry->title(), false),
'author' => escapeToUnicodeAlternative($entry->authors(true), false),
'author' => escapeToUnicodeAlternative(trim($entry->authors(true), '; '), false),
'html' => $entry->content(),
'url' => htmlspecialchars_decode($entry->link(), ENT_QUOTES),
'is_saved' => $entry->isFavorite() ? 1 : 0,