Merge pull request #1020 from TeamNewPipe/fix/yt-subscriber-count

[YouTube] Fix NPE in search when getting channel items without subscriber count
This commit is contained in:
Stypox 2023-01-29 09:44:22 +01:00 committed by GitHub
commit 76eeabac45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,8 +96,12 @@ public class YoutubeChannelInfoItemExtractor implements ChannelInfoItemExtractor
}
if (withHandle) {
return Utils.mixedNumberWordToLong(getTextFromObject(
channelInfoItem.getObject("videoCountText")));
if (channelInfoItem.has("videoCountText")) {
return Utils.mixedNumberWordToLong(getTextFromObject(
channelInfoItem.getObject("videoCountText")));
} else {
return -1;
}
}
return Utils.mixedNumberWordToLong(getTextFromObject(