-
Notifications
You must be signed in to change notification settings - Fork 383
fix(llc): Don't upsert out-of-window messages on message.updated/message.deleted events
#2794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
VelikovPetar
merged 8 commits into
master
from
bug/FLU-560_fix_message_updated_event_inserting_messages
Jul 14, 2026
+479
−11
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9f39525
fix(llc): Don't upsert out-of-window messages on message.updated/dele…
VelikovPetar 5bff89d
Expose bool upsert flag on updateMessage.
VelikovPetar 18e1ce7
Merge branch 'master' into bug/FLU-560_fix_message_updated_event_inse…
VelikovPetar 1e6fbc6
Merge branch 'master' into bug/FLU-560_fix_message_updated_event_inse…
VelikovPetar 36f12dd
Fix PR remarks
VelikovPetar 1b2df2c
Merge branch 'master' into bug/FLU-560_fix_message_updated_event_inse…
VelikovPetar fdc796c
Merge branch 'master' into bug/FLU-560_fix_message_updated_event_inse…
VelikovPetar 57fde44
Merge branch 'master' into bug/FLU-560_fix_message_updated_event_inse…
VelikovPetar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets also add the flag to these two
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe that the
_updatePinnedMessagesmethod is fine if it always does an upsertion. For example, if a message gets pinned, we would get amessage.updatedevent for that message with thepinnedindicator flipped. In such case, we should anyway add the message to the pinned messages state. Otherwise, we need to explicitly check if themessage.updatedevent was received for the purpose of pinning a message.Similarly for the
_updateActiveLiveLocation-> I think that we are also fine if we always upsert them? In this case it would mean that a message outside of the loaded window was updated with a live location, but that is (I believe) already a valid scenario? We should get all live locations when loading the channel, unrelated to which page we load?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense 👍🏼
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done: 36f12dd