Simp-O-Matic

Dumb Discord bot in TS.
git clone git://git.knutsen.co/Simp-O-Matic
Log | Files | Refs | README | LICENSE

commit d26e9e5b514336fbefaf984f96499f0f2b928ec7
parent ff4f33d718ff0ad5b4001b5b7a7c62d9a37ebb60
Author: Demonstrandum <moi@knutsen.co>
Date:   Tue, 10 Nov 2020 22:57:44 +0000

Include stack trace for !get.

Diffstat:
Mlib/commands/get.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/commands/get.ts b/lib/commands/get.ts @@ -24,6 +24,6 @@ export default (home_scope: HomeScope) => { message.channel.send(msg); } catch (e) { message.channel.send(`Invalid object access-path\n` - + `Problem: \`\`\`\n${e}\n\`\`\``); + + `Problem: \`\`\`\n${e}\n${e.stack}\n\`\`\``); } };