Fixed typos

This commit is contained in:
litetex 2021-06-13 22:06:09 +02:00
parent 688a1c316b
commit a59fead0d7
1 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public class YoutubeCommentsExtractor extends CommentsExtractor {
public InfoItemsPage<CommentsInfoItem> getInitialPage() public InfoItemsPage<CommentsInfoItem> getInitialPage()
throws IOException, ExtractionException { throws IOException, ExtractionException {
// Check if the the findInitialCommentsToken was already called and initialized // Check if findInitialCommentsToken was already called and optCommentsDisabled initialized
if (optCommentsDisabled.orElse(false)) { if (optCommentsDisabled.orElse(false)) {
return getInfoItemsPageForDisabledComments(); return getInfoItemsPageForDisabledComments();
} }
@ -72,7 +72,7 @@ public class YoutubeCommentsExtractor extends CommentsExtractor {
/** /**
* Finds the initial comments token and initializes commentsDisabled. * Finds the initial comments token and initializes commentsDisabled.
* @return * @return the continuation token or null if none was found
*/ */
private String findInitialCommentsToken() { private String findInitialCommentsToken() {
final String continuationStartPattern = "continuation\":\""; final String continuationStartPattern = "continuation\":\"";