mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-22 06:43:45 +01:00
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) {
|
||||
xs.startTag(null, OpmlSymbols.OUTLINE);
|
||||
xs.attribute(null, OpmlSymbols.TEXT, feed.getTitle());
|
||||
xs.attribute(null, OpmlSymbols.TITLE, feed.getTitle());
|
||||
if (feed.getType() != null) {
|
||||
xs.attribute(null, OpmlSymbols.TYPE, feed.getType());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user