Ignore itunes:author when not child of channel

Co-authored-by: dllmr <dllmr@users.noreply.github.com>
This commit is contained in:
ByteHamster 2022-03-11 20:11:28 +01:00
parent 36a36e4f85
commit d31b0daee0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class Itunes extends Namespace {
return;
}
if (AUTHOR.equals(localName) && state.getFeed() != null) {
if (AUTHOR.equals(localName) && state.getFeed() != null && state.getTagstack().size() <= 3) {
state.getFeed().setAuthor(contentFromHtml);
} else if (DURATION.equals(localName)) {
try {