LH-276: Format code

This commit is contained in:
Sergiu Toma 2023-02-22 18:30:28 +02:00
parent 4d8adf9eac
commit 6e3ce9fbb3
1 changed files with 20 additions and 7 deletions

27
app.js
View File

@ -389,19 +389,32 @@ peers.on('connection', async (socket) => {
try {
const callId = socketDetails[socket.id];
const socketId = socket.id;
let audioParams, videoParams;
console.log(`[consume] socket ${socket.id} | callId: ${callId}`);
console.log(`[consume] socket ${socketId} | callId: ${callId}`);
if (typeof rtpCapabilities === 'string') rtpCapabilities = JSON.parse(rtpCapabilities);
callback({
videoParams: await consumeVideo({ callId, socketId, rtpCapabilities }),
audioParams: await consumeAudio({ callId, socketId, rtpCapabilities }),
});
} catch (error) {
console.error(`[consume] | ERROR | callId: ${socketDetails[socket.id]} | error: ${error.message}`);
console.error(`[consume] | ERROR | callId: ${callId} | error: ${error.message}`);
callback({ params: { error } });
}
try {
videoParams = await consumeVideo({ callId, socketId, rtpCapabilities });
} catch (error) {
console.error(`[consume] | ERROR | videoParams | callId: ${callId} | error: ${error.message}`);
}
try {
audioParams = await consumeAudio({ callId, socketId, rtpCapabilities });
} catch (error) {
console.error(`[consume] | ERROR | audioParams | callId: ${callId} | error: ${error.message}`);
}
callback({
videoParams,
audioParams,
});
});
/*