Ignore itunes:author when not child of channel
Co-authored-by: dllmr <dllmr@users.noreply.github.com>
This commit is contained in:
parent
36a36e4f85
commit
d31b0daee0
|
@ -55,7 +55,7 @@ public class Itunes extends Namespace {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (AUTHOR.equals(localName) && state.getFeed() != null) {
|
if (AUTHOR.equals(localName) && state.getFeed() != null && state.getTagstack().size() <= 3) {
|
||||||
state.getFeed().setAuthor(contentFromHtml);
|
state.getFeed().setAuthor(contentFromHtml);
|
||||||
} else if (DURATION.equals(localName)) {
|
} else if (DURATION.equals(localName)) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue