From c16228b8ca3f10c4bc27bf950a12c1bbaddf3a40 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 28 Jun 2021 01:22:05 -0600 Subject: [PATCH] Update src/voice/VoiceRecording.ts Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/voice/VoiceRecording.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/voice/VoiceRecording.ts b/src/voice/VoiceRecording.ts index 0304a297ef..2243d49873 100644 --- a/src/voice/VoiceRecording.ts +++ b/src/voice/VoiceRecording.ts @@ -373,7 +373,7 @@ export class VoiceRecording extends EventEmitter implements IDestroyable { const { url: mxc, file: encrypted } = await uploadFile(this.client, inRoomId, new Blob([this.audioBuffer], { type: this.contentType, })); - this.lastUpload = {mxc, encrypted}; + this.lastUpload = { mxc, encrypted }; this.emit(RecordingState.Uploaded); return this.lastUpload; }