Scroll to bottom after sed editing message

This commit is contained in:
janderedev 2021-08-12 22:54:54 +02:00
parent 60947b71ed
commit 82d3dd3c7b
No known key found for this signature in database
GPG key ID: 5D5E18ACB990F57A

View file

@ -223,7 +223,13 @@ export default observer(({ channel }: Props) => {
if (newContent != msg.content) { if (newContent != msg.content) {
msg.edit({ msg.edit({
content: newContent.substr(0, 2000), content: newContent.substr(0, 2000),
}).catch(console.warn); })
.then(() =>
defer(() =>
renderer.jumpToBottom(SMOOTH_SCROLL_ON_RECEIVE),
),
)
.catch(console.warn);
} }
} }
} else { } else {