diff --git a/NUXT/components/Player/watchtime.vue b/NUXT/components/Player/watchtime.vue index c8b8688..0aef5c4 100644 --- a/NUXT/components/Player/watchtime.vue +++ b/NUXT/components/Player/watchtime.vue @@ -50,7 +50,7 @@ export default { controls(newVal) { if (newVal) { // controls are VISIBLE this.updateWatchTime(); // Call to immediately update - this.runWatchTimeUpdates = setInterval(this.updateWatchTime, 250); + this.runWatchTimeUpdates = setInterval(this.updateWatchTime, 500); } else { // Controls are INVISIBLE clearInterval(this.runWatchTimeUpdates); }