Fixed reply method

This commit is contained in:
hydrabolt
2015-09-12 16:09:10 +01:00
parent 106addbb1a
commit efe07dbfc5
2 changed files with 2 additions and 2 deletions

View File

@@ -337,7 +337,7 @@ var Client = (function () {
}
var user = destination.sender;
self.sendMessage(destination, message, callback, user + ", ").then(response)["catch"](reject);
self.sendMessage(destination, message, tts, callback, user + ", ").then(response)["catch"](reject);
});
}
}, {

View File

@@ -374,7 +374,7 @@ class Client {
}
var user = destination.sender;
self.sendMessage(destination, message, callback, user + ", ").then(response).catch(reject);
self.sendMessage(destination, message, tts, callback, user + ", ").then(response).catch(reject);
});