1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Fix crashes

This commit is contained in:
xmflsct
2023-01-30 12:55:35 +01:00
parent 5551cd0e12
commit 57efc4c868
5 changed files with 7 additions and 7 deletions

View File

@ -19,5 +19,5 @@ export const appendRemote = {
_remote: true
}),
mentions: (mentions: Mastodon.Mention[]) =>
mentions.map(mention => ({ ...mention, _remote: true }))
mentions?.map(mention => ({ ...mention, _remote: true }))
}