Return the angular promise on sendMessage

This commit is contained in:
David Cormier 2013-12-14 10:32:14 -05:00
parent d4cffcf38f
commit 706b5838a1

View file

@ -396,8 +396,13 @@ weechat.factory('connection', ['$q', '$rootScope', '$log', '$store', 'handlers',
this.websocket.close();
}
/*
* Format and send a weechat message
*
* @returns the angular promise
*/
var sendMessage = function(message) {
send(weeChat.Protocol.formatInput({
return send(weeChat.Protocol.formatInput({
buffer: models.getActiveBuffer()['fullName'],
data: message
}));