summaryrefslogtreecommitdiff
path: root/src/de/danoeh
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-12-15 18:43:47 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2012-12-15 18:43:47 +0100
commit64348e4f18c9ade29a08bbebe77c648bc52c55b5 (patch)
tree6b67fdc51a44301785936d1e7d3425189b1327e5 /src/de/danoeh
parent3692119bedec66358d72a649d9408ece77a7b30c (diff)
downloadAntennaPod-64348e4f18c9ade29a08bbebe77c648bc52c55b5.zip
Added 'title' attribute to OPML exporter
Diffstat (limited to 'src/de/danoeh')
-rw-r--r--src/de/danoeh/antennapod/opml/OpmlWriter.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/de/danoeh/antennapod/opml/OpmlWriter.java b/src/de/danoeh/antennapod/opml/OpmlWriter.java
index d2f94e895..955c4f2f1 100644
--- a/src/de/danoeh/antennapod/opml/OpmlWriter.java
+++ b/src/de/danoeh/antennapod/opml/OpmlWriter.java
@@ -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());
}