We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c78c3 commit 4b2edd6Copy full SHA for 4b2edd6
webroot/js/inject-iframe.js
@@ -65,11 +65,8 @@ if (elem) {
65
66
const logAjaxRequest = (original) => function ajaxRequest() {
67
if (this.readyState === 4 && this.getResponseHeader('X-DEBUGKIT-ID')) {
68
- const newId = this.getResponseHeader('X-DEBUGKIT-ID');
69
-
70
- window.debugKitId = newId;
71
const params = {
72
- requestId: newId,
+ requestId: this.getResponseHeader('X-DEBUGKIT-ID'),
73
status: this.status,
74
date: new Date(),
75
method: this._arguments && this._arguments[0],
0 commit comments