Add feed title to imported entries

Also fixes one bug where a new feed was not saved and
improved HTML stripping a bit.
This commit is contained in:
Torsten Grote
2016-08-22 12:04:20 -03:00
parent 22e7ec5b27
commit e10f68b496
4 changed files with 69 additions and 21 deletions

View File

@@ -83,14 +83,17 @@ public class Feed {
lastEntryTime);
}
@Nullable
public String getTitle() {
return title;
}
@Nullable
public String getDescription() {
return description;
}
@Nullable
public String getAuthor() {
return author;
}