Gildas пре 2 година
родитељ
комит
1b670ac1af
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/core/content/content.js

+ 1 - 1
src/core/content/content.js

@@ -176,7 +176,7 @@ async function processPage(options) {
 		if (!options.removeFrames && frames && globalThis.frames) {
 			let frameTreePromise;
 			if (options.loadDeferredImages) {
-				frameTreePromise = new Promise(resolve => globalThis.setTimeout(() => resolve(frames.getAsync(options)), options.loadDeferredImagesBeforeFrames ? 0 : options.loadDeferredImagesMaxIdleTime / 2));
+				frameTreePromise = new Promise(resolve => globalThis.setTimeout(() => resolve(frames.getAsync(options)), options.loadDeferredImagesBeforeFrames ? 0 : options.loadDeferredImagesMaxIdleTime * .75));
 			} else {
 				frameTreePromise = frames.getAsync(options);
 			}