Fixed a bug in the feedparser
This commit is contained in:
parent
507a6df046
commit
7e2d5a659e
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue