-
-
Notifications
You must be signed in to change notification settings - Fork 457
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// ==UserScript== | ||
// @name ChatGPT Debug Helper 1.1.4 | ||
// @name ChatGPT Debug Helper 1.1.5 | ||
// @author Dustin Miller <[email protected]> | ||
// @namespace https://spdustin.substack.com | ||
// @version 1.1.4 | ||
// @version 1.1.5 | ||
// @description Adds some helpful debugging tools to the ChatGPT UI | ||
// @run-at document-idle | ||
// @match https://chat.openai.com/* | ||
|
@@ -23,7 +23,7 @@ const CI_MODAL_TRIGGER = new KeyboardEvent("keydown", { | |
bubbles: true, | ||
}); | ||
const originalFetch = window.fetch; | ||
const messages = new Map(); | ||
let messages = new Map(); | ||
|
||
class AEDataService { | ||
static MAX_RETRIES = 3; | ||
|
@@ -167,7 +167,7 @@ async function setup() { | |
if (panelDebug) { | ||
panelDebug.innerHTML = ""; | ||
} | ||
messages = []; | ||
messages = new Map(); | ||
}, | ||
}, | ||
{ | ||
|