Fixed a bug in the feedparser

This commit is contained in:
daniel oeh 2012-07-23 18:45:01 +02:00
parent 507a6df046
commit 7e2d5a659e
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
package de.danoeh.antennapod; package de.danoeh.antennapod;
public final class AppConfig { public final class AppConfig {
public final static boolean DEBUG = false; public final static boolean DEBUG = true;
} }

View File

@ -102,7 +102,7 @@ public class NSRSS20 extends Namespace {
} else if (localName.equals(DESCR)) { } else if (localName.equals(DESCR)) {
if (second.equals(CHANNEL)) { if (second.equals(CHANNEL)) {
state.getFeed().setDescription(content); state.getFeed().setDescription(content);
} else { } else if (second.equals(ITEM)){
state.getCurrentItem().setDescription(content); state.getCurrentItem().setDescription(content);
} }