Новая система пересылки сообщений без трансляции и транскодирования вложений

This commit is contained in:
RoyceDa
2026-03-28 17:07:43 +02:00
parent c9cff515e5
commit aaa4b4283a
4 changed files with 8 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ export function MessageReplyMessages(props: AttachmentProps) {
<Skeleton h={50} w={'100%'}></Skeleton>
}
{reply.map((msg, index) => (
<ReplyedMessage parent={props.parent} chacha_key_plain={props.chacha_key_plain} key={index} messageReply={msg}></ReplyedMessage>
<ReplyedMessage parent={props.parent} chacha_key_plain={msg.chacha_key_plain} key={index} messageReply={msg}></ReplyedMessage>
))}
{showAlertInReplyMessages && <Alert style={{
borderTopLeftRadius: 0,