mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 10:46:56 +02:00
Fix undeclared variable
This commit is contained in:
parent
f00043613d
commit
adb6d20b19
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue