Ensure watch history preference actually works.

This commit is contained in:
Kavin
2023-01-13 13:40:12 +00:00
parent 7d4f0109d6
commit ece47821fb
4 changed files with 4 additions and 4 deletions

View File

@@ -306,7 +306,7 @@ export default {
(async () => {
const videoId = this.getVideoId();
const instance = this;
if (window.db && !this.video.error) {
if (window.db && this.getPreferenceBoolean("watchHistory", false) && !this.video.error) {
var tx = window.db.transaction("watch_history", "readwrite");
var store = tx.objectStore("watch_history");
var request = store.get(videoId);