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 71c67b4 commit 378a023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/channel-feed.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function ChannelFeed(props) {
const idx = messages.length - 1;
const prev = messages[idx];

if ((!!prev.optimistic && channel.user.handle == prev.user.handle) || prev.id == update.id) {
if ((!!prev.optimistic && channel.user.handle == update.user.handle && update.files.length == 0) || prev.id == update.id) {

let mp = [...messages];

Expand Down

0 comments on commit 378a023

Please sign in to comment.