This commit is contained in:
Ritvik Saraf 2018-09-22 14:55:59 +05:30
parent e04787f340
commit 6a0341d59c
1 changed files with 6 additions and 1 deletions

View File

@ -43,6 +43,10 @@ public class CommentsInfo extends ListInfo<CommentsInfoItem>{
commentsExtractor);
commentsInfo.setComments(new ArrayList<>());
commentsInfo.getComments().addAll(initialCommentsPage.getItems());
//tmp
commentsInfo.setRelatedItems(initialCommentsPage.getItems());
commentsInfo.setNextCommentsPageUrl(initialCommentsPage.getNextPageUrl());
commentsInfo.setHasMoreComments(initialCommentsPage.hasNextPage());
commentsInfo.setNextCommentsPageUrl(initialCommentsPage.getNextPageUrl());
return commentsInfo;
@ -53,7 +57,8 @@ public class CommentsInfo extends ListInfo<CommentsInfoItem>{
if(null == commentsInfo.getCommentsExtractor()) {
try {
commentsInfo.setCommentsExtractor(NewPipe.getService(commentsInfo.getServiceId()).getCommentsExtractor(commentsInfo.getUrl()));
} catch (ExtractionException e) {
commentsInfo.getCommentsExtractor().fetchPage();
} catch (ExtractionException | IOException e) {
commentsInfo.addError(e);
return;
}