Remove debugging

pull/21833/head
Travis Ralston 2021-03-16 23:50:03 -06:00
parent f0d5edbc37
commit 6c566cd382
1 changed files with 0 additions and 1 deletions

View File

@ -39,7 +39,6 @@ export class VoiceRecorder {
public constructor(private client: MatrixClient) {
this.recorder.ondataavailable = (a: ArrayBuffer) => {
// TODO: @@ TravisR: We'll have to decode each frame and convert it to an EQ to observe
console.log(a);
const buf = new Uint8Array(a);
const newBuf = new Uint8Array(this.buffer.length + buf.length);
newBuf.set(this.buffer, 0);