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

@@ -20,6 +20,9 @@ public interface IdentityManager {
/** Returns the local pseudonym with the given ID. */
LocalAuthor getLocalAuthor(AuthorId a) throws DbException;
/** Returns the local pseudonym with the given ID. */
LocalAuthor getLocalAuthor(Transaction txn, AuthorId a) throws DbException;
/** Returns the main local identity. */
LocalAuthor getLocalAuthor() throws DbException;