MCPcopy
hub / github.com/xcanwin/KeepChatGPT / scheduleCurrentConversationRecordUpdate

Function scheduleCurrentConversationRecordUpdate

KeepChatGPT.user.js:2105–2114  ·  view source on GitHub ↗
(delay = 1200)

Source from the content-addressed store, hash-verified

2103 };
2104
2105 const scheduleCurrentConversationRecordUpdate = function (delay = 1200) {
2106 if (global.currentConversationRecordTimer) {
2107 clearTimeout(global.currentConversationRecordTimer);
2108 }
2109 global.currentConversationRecordTimer = setTimeout(function () {
2110 if (gv("k_everchanging", false) === true) {
2111 updateEverChangingFromCurrentPage();
2112 }
2113 }, delay);
2114 };
2115
2116 const shouldDeleteEverChangingRecord = function (payload) {
2117 return Boolean(

Callers 2

hookFetchFunction · 0.85

Calls 2

gvFunction · 0.85

Tested by

no test coverage detected