[YouTube] Fix NPE in search when getting channel items without subscriber count

pull/1020/head
TobiGr 2023-01-24 23:03:29 +01:00
rodzic ff94e9f30b
commit 72573932cf
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -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(