We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf025f9 + 90d2ed8 commit a64973eCopy full SHA for a64973e
1 file changed
modules/wolf/index.js
@@ -34,7 +34,8 @@ module.exports.run = function (remainder, parts, reply) {
34
return;
35
}
36
37
- wc.query(remainder, (err, res) => {
+ // TODO: Update to use Promise API instead
38
+ wc.queryCb(remainder, (err, res) => {
39
if (err) {
40
reply(`Wolfram error: ${err}`);
41
0 commit comments