Remove LOGGER statements

This commit is contained in:
broquemonsieur
2023-08-06 01:39:29 -07:00
parent f7fc05eb67
commit 0d968a320f
13 changed files with 35 additions and 72 deletions

View File

@@ -205,7 +205,7 @@ if (video_data.params.video_start > 0 || video_data.params.video_end > 0) {
markers.push({ time: video_data.length_seconds - 0.5, text: 'End' });
} else {
markers.push({ time: video_data.params.video_end, text: 'End' });
}
}
player.markers({
onMarkerReached: function (marker) {

View File

@@ -111,10 +111,7 @@ function get_compilation(compid) {
compid_url = '/api/v1/compilations/' + compid +
'?index=' + video_data.index +
'&continuation=' + video_data.id +
//'&t=' + video_data.video_data.starting_timestamp_seconds +
'&format=html&hl=' + video_data.preferences.locale;
console.log("Send "+compid_url);
'&format=html&hl=' + video_data.preferences.locale;
helpers.xhr('GET', compid_url, {retries: 5, entity_name: 'compilation'}, {
on200: function (response) {