From 7fd6119bcf4709873c57ca13f90bbcfd0f213558 Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 22 Dec 2017 18:50:32 +0100 Subject: [PATCH] add author to rss generated feeds (#858) --- src/main/java/com/commafeed/frontend/model/Entry.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/commafeed/frontend/model/Entry.java b/src/main/java/com/commafeed/frontend/model/Entry.java index 0cf4fa64..4dbf67c8 100644 --- a/src/main/java/com/commafeed/frontend/model/Entry.java +++ b/src/main/java/com/commafeed/frontend/model/Entry.java @@ -70,6 +70,7 @@ public class Entry implements Serializable { entry.setUri(getGuid()); entry.setTitle(getTitle()); + entry.setAuthor(getAuthor()); SyndContentImpl content = new SyndContentImpl(); content.setValue(getContent());