Appease the linter

This commit is contained in:
Travis Ralston 2021-03-22 19:36:58 -06:00
parent e352ed1908
commit 090cf28af4

View File

@ -146,7 +146,7 @@ export class VoiceRecorder {
.then(() => this.recorderStream.getTracks().forEach(t => t.stop())) .then(() => this.recorderStream.getTracks().forEach(t => t.stop()))
// Finally do our post-processing and clean up // Finally do our post-processing and clean up
.then(() => { .then(() => {
clearInterval(<number>this.freqTimerId); clearInterval(this.freqTimerId);
this.recording = false; this.recording = false;
return this.recorder.close(); return this.recorder.close();
}).then(() => this.buffer); }).then(() => this.buffer);