Added 'title' attribute to OPML exporter
This commit is contained in:
parent
3692119bed
commit
64348e4f18
|
@ -47,6 +47,7 @@ public class OpmlWriter {
|
||||||
for (Feed feed : feeds) {
|
for (Feed feed : feeds) {
|
||||||
xs.startTag(null, OpmlSymbols.OUTLINE);
|
xs.startTag(null, OpmlSymbols.OUTLINE);
|
||||||
xs.attribute(null, OpmlSymbols.TEXT, feed.getTitle());
|
xs.attribute(null, OpmlSymbols.TEXT, feed.getTitle());
|
||||||
|
xs.attribute(null, OpmlSymbols.TITLE, feed.getTitle());
|
||||||
if (feed.getType() != null) {
|
if (feed.getType() != null) {
|
||||||
xs.attribute(null, OpmlSymbols.TYPE, feed.getType());
|
xs.attribute(null, OpmlSymbols.TYPE, feed.getType());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue