Merge pull request #5777 from ByteHamster/ignore-item-author
Ignore itunes:author when not child of channel
This commit is contained in:
commit
197a0a1044
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue