From 7989eb37074523728ded07618ce16b736e00d2b1 Mon Sep 17 00:00:00 2001 From: Nicholas Jitkoff Date: Wed, 19 Jan 2022 00:02:20 -0800 Subject: [PATCH] add missing quote --- functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/index.js b/functions/index.js index 8f3f9c7..108489c 100644 --- a/functions/index.js +++ b/functions/index.js @@ -26,7 +26,7 @@ exports.index = functions.https.onRequest((request, response) => { for (const char of image) { codepoints.push(char.codePointAt(0).toString(16)); } - content += ` + content += `` } } response.send(content);