diff options
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/comments.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/comments.py b/youtube/comments.py index 5825d20..d808876 100644 --- a/youtube/comments.py +++ b/youtube/comments.py @@ -97,7 +97,7 @@ def post_process_comments_info(comments_info): ctoken = comment['reply_ctoken'] ctoken, err = proto.set_protobuf_value( ctoken, - 'base64p', 6, 3, 9, value=250) + 'base64p', 6, 3, 9, value=200) if err: print('Error setting ctoken value:') print(err) @@ -127,7 +127,7 @@ def post_process_comments_info(comments_info): # change max_replies field to 250 in ctoken new_ctoken, err = proto.set_protobuf_value( ctoken, - 'base64p', 6, 3, 9, value=250) + 'base64p', 6, 3, 9, value=200) if err: print('Error setting ctoken value:') print(err) |