mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-15 20:29:52 +01:00
Fix Blog Sharing Backend and Add Blog Sharing Integration Tests
This commit is contained in:
@@ -69,7 +69,7 @@ class BlogFactoryImpl implements BlogFactory {
|
||||
Author a =
|
||||
authorFactory.createAuthor(blog.getString(1), blog.getRaw(2));
|
||||
// TODO change permanent depending on how this will be used
|
||||
boolean permanent = false;
|
||||
boolean permanent = true;
|
||||
return new Blog(g, blog.getString(0), description, a, permanent);
|
||||
}
|
||||
|
||||
|
||||
@@ -282,7 +282,7 @@ class BlogManagerImpl extends BdfIncomingMessageHook implements BlogManager,
|
||||
}
|
||||
|
||||
@Override
|
||||
public Blog getPersonalBlog(Author author) throws DbException {
|
||||
public Blog getPersonalBlog(Author author) {
|
||||
return blogFactory.createPersonalBlog(author);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user