From f925f8bf433ccdab64a3be8d8ec63cbc284cc204 Mon Sep 17 00:00:00 2001 From: Phillip Date: Fri, 17 Feb 2023 00:36:53 +0200 Subject: [PATCH] fix string literal bug --- qortal-ui-plugins/plugins/core/components/ChatPage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qortal-ui-plugins/plugins/core/components/ChatPage.js b/qortal-ui-plugins/plugins/core/components/ChatPage.js index e3d53560..edb4869e 100644 --- a/qortal-ui-plugins/plugins/core/components/ChatPage.js +++ b/qortal-ui-plugins/plugins/core/components/ChatPage.js @@ -3423,7 +3423,7 @@ console.log({zipFileBlob}) const image = this.imageFile const id = this.uid(); - const identifier = qchat_${id}; + const identifier = `qchat_${id}`; let compressedFile = ''; await new Promise(resolve => { new Compressor( image, { @@ -3520,7 +3520,7 @@ console.log({zipFileBlob}) const attachment = this.attachment; const id = this.uid(); - const identifier = qchat_${id}; + const identifier = `qchat_${id}`; const fileSize = attachment.size; if (fileSize > 1000000) { parentEpml.request('showSnackBar', get("chatpage.cchange77"));