From adb6d20b196989f9075bf704f9231d9b7d9f05a0 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Tue, 30 May 2023 21:52:10 -0400 Subject: [PATCH] Fix undeclared variable --- applications/notes/app-notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/notes/app-notes.js b/applications/notes/app-notes.js index 9e4ac96..918fb60 100644 --- a/applications/notes/app-notes.js +++ b/applications/notes/app-notes.js @@ -63,7 +63,7 @@ var n = d.getTime(); if (typeof message === "string") { - eventObj = JSON.parse(message); + var eventObj = JSON.parse(message); if (eventObj.channel === channel) { if (eventObj.action === "saveText" && (n - timestamp) > INTERCALL_DELAY) { d = new Date();