Fix comments for age-restricted videos

This commit is contained in:
Omar Roth 2019-05-14 08:18:57 -05:00
parent a4134d30fa
commit e833ccf309
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 4 additions and 2 deletions

View File

@ -52,7 +52,9 @@ function hide_youtube_replies(target, inner_text, sub_text) {
}
var continue_button = document.getElementById('continue');
continue_button.onclick = continue_autoplay;
if (continue_button) {
continue_button.onclick = continue_autoplay;
}
function continue_autoplay(event) {
if (event.target.checked) {
@ -122,7 +124,7 @@ function get_playlist(plid, timeouts = 0) {
if (xhr.response.nextVideo) {
player.on('ended', function () {
var url = new URL('https://example.com/watch?v=' + video_data.next_video);
var url = new URL('https://example.com/watch?v=' + xhr.response.nextVideo);
if (video_data.params.autoplay || video_data.params.continue_autoplay) {
url.searchParams.set('autoplay', '1');