3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-30 16:09:27 +01:00

fix js crash

This commit is contained in:
Luke Slater 2012-11-20 16:49:37 +00:00
parent 53103c6842
commit 96b2dd0ddd

View File

@ -13,9 +13,11 @@ var js = function(dbot) {
var commands = { var commands = {
// Run JS code sandboxed, return result to channel. // Run JS code sandboxed, return result to channel.
'~js': function(event) { '~js': function(event) {
try {
s.run(event.input[1], function(output) { s.run(event.input[1], function(output) {
event.reply(output.result); event.reply(output.result);
}.bind(this)); }.bind(this));
} catch(err) {}
}, },
// Run JS code un-sandboxed, with access to DBot memory (admin-only). // Run JS code un-sandboxed, with access to DBot memory (admin-only).