1.1.2-1.5.3 #20

Merged
Royce59 merged 13 commits from dev into main 2026-03-21 19:37:21 +00:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 91b955d621 - Show all commits

View File

@@ -101,6 +101,12 @@ export function usePrepareAttachment() {
try{
for(let i = 0; i < attachments.length; i++){
const attachment : Attachment = attachments[i];
if(attachment.type == AttachmentType.CALL){
/**
* Звонок загружать не надо
*/
continue;
}
if(attachment.type == AttachmentType.MESSAGES){
let reply : MessageReply[] = JSON.parse(attachment.blob)
for(let j = 0; j < reply.length; j++){

View File

@@ -373,7 +373,7 @@ export function CallProvider(props : CallProviderProps) {
send(offerSignal);
return;
}
}, [activeCall, sessionKeys]);
}, [activeCall, sessionKeys, duration]);
const openCallsModal = (text : string) => {
modals.open({