summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/syndication/namespace
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-23 18:45:01 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-23 18:45:01 +0200
commit7e2d5a659e8eb871ec75c7257d6ca8d1d42e1b8b (patch)
tree2cf2863d5ff0345bb2075bc9a7c467ccf8bfe686 /src/de/danoeh/antennapod/syndication/namespace
parent507a6df0469fd7fdba0041c92e7a7eb0416e6478 (diff)
downloadAntennaPod-7e2d5a659e8eb871ec75c7257d6ca8d1d42e1b8b.zip
Fixed a bug in the feedparser
Diffstat (limited to 'src/de/danoeh/antennapod/syndication/namespace')
-rw-r--r--src/de/danoeh/antennapod/syndication/namespace/rss20/NSRSS20.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/danoeh/antennapod/syndication/namespace/rss20/NSRSS20.java b/src/de/danoeh/antennapod/syndication/namespace/rss20/NSRSS20.java
index 6dcd8daa0..3bd69f049 100644
--- a/src/de/danoeh/antennapod/syndication/namespace/rss20/NSRSS20.java
+++ b/src/de/danoeh/antennapod/syndication/namespace/rss20/NSRSS20.java
@@ -102,7 +102,7 @@ public class NSRSS20 extends Namespace {
} else if (localName.equals(DESCR)) {
if (second.equals(CHANNEL)) {
state.getFeed().setDescription(content);
- } else {
+ } else if (second.equals(ITEM)){
state.getCurrentItem().setDescription(content);
}