mirror of
https://github.com/Youzini-afk/ST-Bionic-Memory-Ecology.git
synced 2026-05-15 22:30:38 +08:00
Fix recall card retry when newer message DOM lags
This commit is contained in:
2
index.js
2
index.js
@@ -2255,9 +2255,9 @@ function buildPersistedRecallUiRetryDelays(initialDelayMs = 0) {
|
||||
}
|
||||
|
||||
function summarizePersistedRecallRefreshStatus(summary) {
|
||||
if (summary.renderedCount > 0) return "rendered";
|
||||
if (summary.waitingMessageIndices.length > 0) return "waiting_dom";
|
||||
if (summary.anchorFailureIndices.length > 0) return "missing_message_anchor";
|
||||
if (summary.renderedCount > 0) return "rendered";
|
||||
if (summary.skippedNonUserIndices.length > 0) return "skipped_non_user";
|
||||
if (summary.persistedRecordCount === 0) return "missing_recall_record";
|
||||
return "missing_message_anchor";
|
||||
|
||||
Reference in New Issue
Block a user