Skip to content

Commit

Permalink
[client-app] Fix runtime error in FetchFolderList
Browse files Browse the repository at this point in the history
Summary: See title

Test Plan: manual

Reviewers: mark, halla

Reviewed By: halla

Differential Revision: https://phab.nylas.com/D4418
  • Loading branch information
jstejada committed Apr 13, 2017
1 parent 9c889c7 commit d5a2afd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class FetchFolderListIMAP extends SyncTask {
const Klass = this._classForMailboxWithRole(role, this._db);
const existing = await Klass.findAll({where: {role: role}})
if (existing.length > 0) {
this.assignedRolesCache.add(role)
assignedRolesCache.add(role)
return true
}
return false
Expand Down

0 comments on commit d5a2afd

Please sign in to comment.