Browse Source

ref: faster video time remembering interval

Sv443 18 hours ago
parent
commit
23ef6824e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/features/behavior.ts

+ 1 - 1
src/features/behavior.ts

@@ -242,7 +242,7 @@ async function remTimeStartUpdateLoop() {
   // for no overlapping calls and better error handling:
   // for no overlapping calls and better error handling:
   if(remVidCheckTimeout)
   if(remVidCheckTimeout)
     clearTimeout(remVidCheckTimeout);
     clearTimeout(remVidCheckTimeout);
-  remVidCheckTimeout = setTimeout(remTimeStartUpdateLoop, 1000);
+  remVidCheckTimeout = setTimeout(remTimeStartUpdateLoop, 500);
 }
 }
 
 
 /** Updates an existing or inserts a new entry to be remembered */
 /** Updates an existing or inserts a new entry to be remembered */