diff --git a/tubearchivist/home/templates/home/video.html b/tubearchivist/home/templates/home/video.html index e3096fa0..dac51c3b 100644 --- a/tubearchivist/home/templates/home/video.html +++ b/tubearchivist/home/templates/home/video.html @@ -132,6 +132,12 @@ {% endfor %} {% endif %} +
Comments: {{video.comment_count}}
diff --git a/tubearchivist/static/script.js b/tubearchivist/static/script.js index 6395b09b..aec85661 100644 --- a/tubearchivist/static/script.js +++ b/tubearchivist/static/script.js @@ -793,7 +793,11 @@ function apiRequest(apiEndpoint, method, data) { xhttp.setRequestHeader('Authorization', 'Token ' + sessionToken); xhttp.setRequestHeader('Content-Type', 'application/json'); xhttp.send(JSON.stringify(data)); - return JSON.parse(xhttp.responseText); + if (xhttp.status === 404) { + return false; + } else { + return JSON.parse(xhttp.responseText); + } } // Gets origin URL @@ -951,7 +955,7 @@ function createVideo(video, viewStyle) { // create video item div from template const videoId = video.youtube_id; // const mediaUrl = video.media_url; - const thumbUrl = '/cache/' + video.vid_thumb_url; + // const thumbUrl = '/cache/' + video.vid_thumb_url; const videoTitle = video.title; const videoPublished = video.published; const videoDuration = video.player.duration_str; @@ -968,7 +972,7 @@ function createVideo(video, viewStyle) {