Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsrobot committed Dec 16, 2023
1 parent 2e85fc2 commit 64b1f8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/channel-feed.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export default function ChannelFeed(props) {
const idx = messages.length - 1;
const prev = messages[idx];

if ((!!prev.optimistic && prev.user.handle == me.handle) || prev.id == update.id) {
if ((!!prev.optimistic && prev.user.handle == update.user.handle) || prev.id == update.id) {

if (update.updated_at == prev.updated_at) {
return;
}
Expand Down

0 comments on commit 64b1f8b

Please sign in to comment.