mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-10-29 19:59:22 +00:00
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;
|
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…
x
Reference in New Issue
Block a user