mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 17:02:17 -05:00
fix wrong api usage in outbox
This commit is contained in:
parent
d42c654675
commit
59d00f0de9
@ -222,7 +222,9 @@ define(function(require) {
|
|||||||
|
|
||||||
function sendEncrypted(email) {
|
function sendEncrypted(email) {
|
||||||
removeFromPendingMails(email);
|
removeFromPendingMails(email);
|
||||||
self._emailDao.sendEncrypted(email, function(err) {
|
self._emailDao.sendEncrypted({
|
||||||
|
email: email
|
||||||
|
}, function(err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
self._outboxBusy = false;
|
self._outboxBusy = false;
|
||||||
callback(err);
|
callback(err);
|
||||||
|
@ -80,7 +80,9 @@ define(function(require) {
|
|||||||
dummyMails = [member, invited, notinvited];
|
dummyMails = [member, invited, notinvited];
|
||||||
|
|
||||||
emailDaoStub.list.yieldsAsync(null, dummyMails);
|
emailDaoStub.list.yieldsAsync(null, dummyMails);
|
||||||
emailDaoStub.sendEncrypted.yieldsAsync();
|
emailDaoStub.sendEncrypted.withArgs(sinon.match(function(opts) {
|
||||||
|
return typeof opts.email !== 'undefined' && opts.email.to.address === member.to.address;
|
||||||
|
})).yieldsAsync();
|
||||||
emailDaoStub.sendPlaintext.yieldsAsync();
|
emailDaoStub.sendPlaintext.yieldsAsync();
|
||||||
devicestorageStub.removeList.yieldsAsync();
|
devicestorageStub.removeList.yieldsAsync();
|
||||||
invitationDaoStub.check.withArgs(sinon.match(function(o) {
|
invitationDaoStub.check.withArgs(sinon.match(function(o) {
|
||||||
|
Loading…
Reference in New Issue
Block a user