Add missing resolve

This commit is contained in:
lilia 2015-04-15 12:24:29 -07:00
parent b5d724ffc3
commit de65f9e6bd

View file

@ -40,8 +40,9 @@
} }
}, },
resolve: function() { resolve: function() {
new Promise(function() { new Promise(function(resolve) {
this.conversation.resolveConflicts(this.model.number); this.conversation.resolveConflicts(this.model.number);
resolve();
}.bind(this)); }.bind(this));
this.trigger('resolve'); this.trigger('resolve');
this.remove(); this.remove();