diff --git a/src/components/VideoItem.vue b/src/components/VideoItem.vue index dc81d841..136edfb3 100644 --- a/src/components/VideoItem.vue +++ b/src/components/VideoItem.vue @@ -184,11 +184,7 @@ export default { const request = objectStore.get(this.video.url.substr(-11)); request.onsuccess = event => { const video = event.target.result; - if ( - video && - (!this.getPreferenceBoolean("watchHistory", false) || - (video.currentTime ?? 0) > video.duration * 0.9) - ) { + if (video && (video.currentTime ?? 0) > video.duration * 0.9) { this.showVideo = false; return; }