Typo's & [watchPage] annotation

This commit is contained in:
Mattia 2021-07-18 16:12:31 +02:00
parent 89c073fd51
commit 0949bb13c1
2 changed files with 4 additions and 3 deletions

View File

@ -37,7 +37,7 @@ class CommentsClient {
return retry(() async {
var raw = await _httpClient.postString(url, headers: {
'x-youtube-client-namE': '1',
'x-youtube-client-name': '1',
'x-youtube-client-version': '2.20210622.10.00',
'cookie':
'YSC=$ysc; CONSENT=YES+cb; GPS=1; VISITOR_INFO1_LIVE=$visitorInfoLive',
@ -99,7 +99,7 @@ class CommentsClient {
clickTrackingParams =
continuationData.getT<String>('clickTrackingParams');
}
var comment = Comment(
yield Comment(
commentRaw.getT<String>('commentId')!,
commentRaw.get('authorText')!.getT<String>('simpleText')!,
ChannelId(commentRaw
@ -124,7 +124,6 @@ class CommentsClient {
commentRaw.getT<int>('replyCount') ?? 0,
continuation,
clickTrackingParams);
yield comment;
}
var continuationRoot = (data
.get('response')

View File

@ -1,6 +1,7 @@
import 'dart:collection';
import 'package:equatable/equatable.dart';
import 'package:meta/meta.dart';
import '../channels/channel_id.dart';
import '../common/common.dart';
@ -52,6 +53,7 @@ class Video with EquatableMixin {
/// Used internally.
/// Shouldn't be used in the code.
@internal
final WatchPage? watchPage;
/// Returns true if the watch page is available for this video.