fix typo yield vs yield*

master
Vitaliy Filippov 2016-10-05 15:27:03 +03:00
parent db62cbbbeb
commit 5942a379f9
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ Syncer.prototype.idleVanish = function(accountId, uids)
var self = this;
gen.run(function*()
{
let [ boxId ] = yield* self.pg.select('id').from('folders')
let [ boxId ] = yield self.pg.select('id').from('folders')
.where({ name: 'INBOX', account_id: accountId }).val(gen.ef());
yield* self.deleteVanished(boxId, uids);
});