mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix for errors reading undefined.
This commit is contained in:
parent
993fb15397
commit
9be9aada13
1 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ export default {
|
|||
|
||||
if (this.$route.query.t) {
|
||||
videoEl.currentTime = this.$route.query.t;
|
||||
} else {
|
||||
} else if (window.db) {
|
||||
var tx = window.db.transaction("watch_history", "readonly");
|
||||
var store = tx.objectStore("watch_history");
|
||||
var request = store.get(this.videoId);
|
||||
|
@ -359,7 +359,7 @@ export default {
|
|||
if (new Date().getTime() - this.lastUpdate < 500) return;
|
||||
this.lastUpdate = new Date().getTime();
|
||||
|
||||
if (!this.videoId) return;
|
||||
if (!this.videoId || !window.db) return;
|
||||
|
||||
var tx = window.db.transaction("watch_history", "readwrite");
|
||||
var store = tx.objectStore("watch_history");
|
||||
|
|
Loading…
Reference in a new issue