Merge pull request #5777 from ByteHamster/ignore-item-author

Ignore itunes:author when not child of channel
This commit is contained in:
ByteHamster 2022-03-13 11:21:48 +01:00 committed by GitHub
commit 197a0a1044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {