nodebb-plugin-ezoic-infinite 1.4.11 → 1.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/client.js +6 -2
package/package.json
CHANGED
package/public/client.js
CHANGED
|
@@ -366,7 +366,10 @@
|
|
|
366
366
|
resetPlaceholderInWrap(wrapNow, id);
|
|
367
367
|
attachFillObserver(wrapNow, id);
|
|
368
368
|
}
|
|
369
|
-
|
|
369
|
+
// Ne pas appeler showAds si un autre appel est déjà en cours pour cet ID
|
|
370
|
+
if (!state.pendingById.has(id)) {
|
|
371
|
+
callShowAdsWhenReady(id);
|
|
372
|
+
}
|
|
370
373
|
setTimeout(step, 1100);
|
|
371
374
|
};
|
|
372
375
|
|
|
@@ -554,7 +557,8 @@
|
|
|
554
557
|
try { oldWrap && oldWrap.remove(); } catch (e) {}
|
|
555
558
|
wrap = insertAfter(el, id, kindClass, afterPos);
|
|
556
559
|
if (!wrap) continue;
|
|
557
|
-
|
|
560
|
+
// Attendre 1500ms après destroy pour laisser Ezoic finir son cleanup interne
|
|
561
|
+
setTimeout(() => { enqueueRetry(id); }, 1500);
|
|
558
562
|
} else {
|
|
559
563
|
usedSet.add(id);
|
|
560
564
|
wrap = insertAfter(el, id, kindClass, afterPos);
|