Change authors delimiter to newline

This commit is contained in:
Martin Fietz 2016-11-01 17:23:04 +01:00
parent cfef273eba
commit 0760feac81
1 changed files with 1 additions and 1 deletions

View File

@ -220,8 +220,8 @@ public class NSAtom extends Namespace {
if (currentName == null) {
state.getFeed().setAuthor(content);
} else {
state.getFeed().setAuthor(currentName + ", " + content);
}
state.getFeed().setAuthor(currentName + "\n" + content);
}
}
}