(delay = 1200)
| 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( |
no test coverage detected