Private user notes can lose typed text (store echo reverts draft; close within debounce drops save) #18
Closed
opened 2026-09-12 01:50:53 -04:00 by jared
·
0 comments
No Branch/Tag Specified
lotus
update-packages
sw-fix
read-me-update
image-path-changes
dm-calls
fix-2469
renovate/element-hq-element-call-embedded-0.x
renovate/npm-i18next-http-backend-vulnerability
renovate/npm-vite-vulnerability
dev
docs-update
more-theme
fix-257
imporve-thread-reply
revert-2402-improve-menu-congestion
mxidColor-toggle
update-sw-main-msg
v4.11.1
v4.10.5
v4.10.4
v4.10.3
v4.10.2
v4.10.1
v4.10.0
v4.9.1
v4.9.0
v4.8.1
v4.8.0
v4.7.1
v4.7.0
v4.6.0
v4.5.1
v4.5.0
v4.4.0
v4.3.2
v4.3.0
v4.2.3
v4.2.2
v4.2.1
v4.2.0
v4.1.0
v4.0.3
v4.0.0
v3.2.0
v3.1.0
v3.0.0
v2.2.6
v2.2.5
v2.2.4
v2.2.3
v2.2.2
v2.2.1
v2.2.0
v2.1.3
v2.1.2
v2.1.1
v2.1.0
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.1
v1.5.0
v1.4.0
v1.3.2
v1.3.1
v1.3.0
v1.2.1
v1.2.0
v1.1.0
v1.0.0
Labels
Clear labels
a11y
area: appearance
area: auth-session
area: build-ci
area: calls
area: desktop
area: media
area: messaging
area: mobile
area: moderation
area: navigation
area: notifications
area: settings
area: threads
bug
dependencies
docs
duplicate
enhancement
help wanted
invalid
needs-human-review
performance
planning
priority: critical
priority: high
priority: low
priority: medium
qa
question
research
security
tech-debt
ux
wontfix
Accessibility: keyboard, screen reader, contrast, motion
Client area: appearance
Client area: auth-session
Client area: build-ci
Client area: calls
Client area: desktop
Client area: media
Client area: messaging
Client area: mobile
Client area: moderation
Client area: navigation
Client area: notifications
Client area: settings
Client area: threads
Something is not working
Third-party package versions and advisories
README / LOTUS_* docs wrong or missing
This issue or pull request already exists
New feature
Need some help
Something is wrong
Re-render storms, leaks, heavy work on hot paths
Data loss, security hole, or crash on a main path
Broken feature or serious usability problem
Minor issue or polish
Wrong behaviour in an edge case or notable degradation
Manual QA: shipped, needs a human in a real environment
More information is needed
XSS, unsafe URLs, data leaks, auth/session
Code health, dead code, fragile patterns
Usability or visual inconsistency
This won't be fixed
Milestone
No items
No Milestone
Audit 2026-09 · High
Projects
Clear projects
No projects
Notifications
Due Date
Dependencies
No dependencies set.
Reference: LotusGuild/cinny#18
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Severity: high · Type: bug · Confidence: high
Location:
src/app/components/user-profile/UserRoomProfile.tsx:212-234; underlying store:src/app/hooks/createAccountDataListStore.ts:95-107src/app/components/user-profile/UserRoomProfile.tsx:212-234Problem
UserPrivateNoteshasuseEffect(() => setDraft(getNote(userId)), [getNote, userId])with no "dirty" guard.getNoteis auseCallbackover thenotesobject fromuseUserNotes(), whose identity changes on every store notification — andenqueueWritenotifies listeners twice per save: once optimistically when the debounced write is enqueued, and again when the account-data echo for that same write arrives via sync. Each notification re-fires the effect and callssetDraft(getNote(userId)). If the user keeps typing after the ~800ms debounce fired but before that save's own echo lands (a normal debounce-then-keep-typing pattern), the echo's resync reverts the textarea to the older, just-saved value, silently discarding whatever was typed in the interim. Note this is a private, per-user account-data note (io.lotus.user_notes), not room-shared state, and it renders via a plain<textarea>with nodangerouslySetInnerHTML— no XSS concern here, just data loss.Second mechanism (related finding):
UserPrivateNotesdebounces saves withsetTimeout(..., 800)and stores the pending timer insaveTimer.current. The unmount cleanup effect (useEffect(() => () => clearTimeout(saveTimer.current), [])) only cancels the pending timer — it never flushes the latestdraftvalue tosetNote()before cancelling. If the user types a note and closes the user-profile panel (e.g. clicking elsewhere, pressing Escape, navigating away) inside the 800ms window, the debounced write is cancelled and the note is never persisted toio.lotus.user_notesaccount data — the typed text is lost with no warning, and re-opening the profile shows the old (or empty) note.How to trigger
Open a user's private note, type a phrase, pause ~800ms so autosave fires, then immediately resume typing more text before the network round-trip completes.
Also: Open a user's profile, type a private note, and close the profile drawer within 800ms of the last keystroke (a very plausible interaction — type a short note then immediately click away). The note is not saved.
Suggested fix
Track a per-note "dirty" ref (mirroring the
statusDirtyRef/pendingAppliedRefpattern already used by the adjacentProfileStatuscomponent specifically to avoid this class of clobber) and skip the resync effect while the user has unsaved local edits.Also: In the unmount cleanup, if a save is pending, synchronously call
setNote(userId, draft)(fire-and-forget is fine) before/instead of justclearTimeout.Filed from the September 2026 client audit (branch
lotus@4bea4895).