Fix a typo which causes audio call being everytime instead of when needed. Thanks to @robbiet480 for reporting the issue

This commit is contained in:
Chrystian Huot 2020-06-06 09:01:01 -04:00
parent ba025dc1e4
commit 14d1da280a
2 changed files with 2 additions and 2 deletions

View file

@ -596,7 +596,7 @@ export class AppRdioScannerService implements OnDestroy {
} }
} }
private messageParser(message): void { private messageParser(message: any): void {
try { try {
message = JSON.parse(message); message = JSON.parse(message);

View file

@ -331,7 +331,7 @@ class Controller {
return; return;
} }
if (call.autioType !== 'audio/aac') { if (call.audioType !== 'audio/aac') {
try { try {
call = await this.convertCallAudio(call); call = await this.convertCallAudio(call);