Skip to content

Commit 80a7e99

Browse files
authored
Merge pull request #43 from Countly/mini-fix
reverse parts content
2 parents 17a0b47 + b0a7cc5 commit 80a7e99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/CountlyClass.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3975,7 +3975,7 @@ class CountlyClass {
39753975

39763976
content = {
39773977
enterContentZone: (filter_callback) => {
3978-
this.#enterContentZoneInternal(false, filter_callback);
3978+
this.#enterContentZoneInternal(undefined, filter_callback);
39793979
},
39803980
refreshContentZone: () => {
39813981
this.#refreshContentZoneInternal();
@@ -4003,7 +4003,7 @@ class CountlyClass {
40034003
// settimeout
40044004
this.#log(logLevelEnums.DEBUG, "content.enterContentZone, Not enough time passed since initialization");
40054005
setTimeout(() => {
4006-
this.#enterContentZoneInternal(false);
4006+
this.#enterContentZoneInternal();
40074007
}, 4001);
40084008
return;
40094009
}
@@ -4027,7 +4027,7 @@ class CountlyClass {
40274027
this.#processAsyncQueue();
40284028
this.#sendEventsForced();
40294029
setTimeout(() => {
4030-
this.#enterContentZoneInternal(false);
4030+
this.#enterContentZoneInternal();
40314031
}, 1000);
40324032
};
40334033

0 commit comments

Comments
 (0)