diff --git a/src/ext/lib/video-data/VideoData.ts b/src/ext/lib/video-data/VideoData.ts index d4fa060..4de39ca 100644 --- a/src/ext/lib/video-data/VideoData.ts +++ b/src/ext/lib/video-data/VideoData.ts @@ -309,7 +309,6 @@ class VideoData { if (this.pageInfo.defaultCrop) { this.resizer.setAr(this.pageInfo.defaultCrop); } else { - console.log("RESETTING!") this.resizer.reset(); try { diff --git a/src/ext/uw-bg.js b/src/ext/uw-bg.js index df74b25..1f5f0de 100644 --- a/src/ext/uw-bg.js +++ b/src/ext/uw-bg.js @@ -291,7 +291,6 @@ class UWServer { // if video is older than PageInfo's video rescan period (+ 4000ms of grace), // we clean it up from videoTabs[tabId].frames array. const ageLimit = Date.now() - this.settings.active.pageInfo.timeouts.rescan - 4000; - console.log("videoTabs[tabId]:", this.videoTabs[ctab.id]) try { for (const key in this.videoTabs[ctab.id].frames) { if (this.videoTabs[ctab.id].frames[key].registerTime < ageLimit) {