@constructor-io/constructorio-client-javascript 2.26.1 → 2.26.2
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.
|
@@ -107,6 +107,7 @@ var RequestQueue = /*#__PURE__*/function () {
|
|
|
107
107
|
var now = +new Date();
|
|
108
108
|
|
|
109
109
|
if (requestOriginTime && now - requestOriginTime > requestTTL) {
|
|
110
|
+
this.sendTrackingEvents = false;
|
|
110
111
|
RequestQueue.remove();
|
|
111
112
|
return;
|
|
112
113
|
}
|
|
@@ -213,6 +214,7 @@ var RequestQueue = /*#__PURE__*/function () {
|
|
|
213
214
|
// - Firefox seeing identical events being transmitted multiple times
|
|
214
215
|
|
|
215
216
|
if (Array.isArray(localStorageQueue) && localStorageQueue.length !== queue.length) {
|
|
217
|
+
this.sendTrackingEvents = false;
|
|
216
218
|
RequestQueue.remove();
|
|
217
219
|
}
|
|
218
220
|
} // Remove current request queue key
|