nodebb-plugin-ezoic-infinite 1.5.46 → 1.5.47
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 +1 -1
package/package.json
CHANGED
package/public/client.js
CHANGED
|
@@ -266,7 +266,7 @@ function mutationHasRelevantAddedNodes(mutations) {
|
|
|
266
266
|
const orig = ez.showAds;
|
|
267
267
|
|
|
268
268
|
ez.showAds = function (...args) {
|
|
269
|
-
if (isBlocked()) {
|
|
269
|
+
if (isBlocked()) { return; }
|
|
270
270
|
|
|
271
271
|
let ids = [];
|
|
272
272
|
if (args.length === 1 && Array.isArray(args[0])) ids = args[0];
|