Починить двустороннее видео в звонках

This commit is contained in:
AidarKC
2026-08-10 15:00:44 +04:00
parent 0e763987aa
commit 47b5f8db7b
4 changed files with 260 additions and 40 deletions
+4 -1
View File
@@ -118,7 +118,10 @@ export function parseDmTechBlocks(rawText = '') {
const status = String(fields.status || '').trim().toLowerCase();
if (status === 'completed') {
const durationSec = Math.max(0, Math.floor(Number(fields.duration || 0)));
callSummary = { status: 'completed', durationSec };
callSummary = {
status: 'completed',
durationSec,
};
} else {
callSummary = {
status: 'failed',