Commit c803e115 authored by YSH's avatar YSH

fix: prevent create multiple wake lock

parent 1f8f3a6e
...@@ -79,7 +79,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre ...@@ -79,7 +79,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre
var wakeLock = null; var wakeLock = null;
var requestWakeLock = async function() { var requestWakeLock = async function() {
if (!opts.prevent_screen_sleep_during_generation) return; if (!opts.prevent_screen_sleep_during_generation || wakeLock) return;
try { try {
wakeLock = await navigator.wakeLock.request('screen'); wakeLock = await navigator.wakeLock.request('screen');
console.log('Wake Lock is active.'); console.log('Wake Lock is active.');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment