Add error handler to this for some reason

I got a maximum call stack size exceeded error in this code...
This commit is contained in:
7cc5c4f330d47060 2024-07-30 15:40:28 -04:00
parent b5da5fe50c
commit 9f99a1bbf1

View file

@ -8,4 +8,14 @@ const parse = function (data) {
return data
}
}
const parse2 = function (_data) {
try {
return parse(_data)
} catch (e) {
console.error(e)
return {
text: 'An error occured while parsing a message. See console for more information.'
}
}
}
module.exports = parse