Skip to content

Commit ff8817e

Browse files
committed
Increased mic lock timeout
Mic lock timeout increased from 2 -> 5 seconds on page load.
1 parent a4dccf2 commit ff8817e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ let deferredInstallPrompt = undefined;
6262

6363
let micPostLocked = true; // lock mic POST flag
6464

65-
// unlock 2 seconds after page load
65+
// unlock 5 seconds after page load
6666
setTimeout(() => {
6767
micPostLocked = false;
6868
console.log("MIC POSTS UNLOCKED");
69-
}, 2000);
69+
}, 5000);
7070

7171
async function init() {
7272
document.querySelectorAll('img').forEach(img => {

0 commit comments

Comments
 (0)