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 caf6009 commit 4671b5bCopy full SHA for 4671b5b
1 file changed
lib/state/state.ts
@@ -51,17 +51,6 @@ export const checkSession = async (
51
}
52
53
54
- if (state.sessionId === lastSessionId) {
55
- const applied = applyPendingCompressionDurations(state, lastSessionId)
56
- if (applied > 0) {
57
- saveSessionState(state, logger).catch((error) => {
58
- logger.warn("Failed to persist queued compression time updates", {
59
- error: error instanceof Error ? error.message : String(error),
60
- })
61
62
- }
63
64
-
65
const lastCompactionTimestamp = findLastCompactionTimestamp(messages)
66
if (lastCompactionTimestamp > state.lastCompaction) {
67
state.lastCompaction = lastCompactionTimestamp
0 commit comments