mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user