Skip to content

Commit

Permalink
Ignore errors here
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Sep 22, 2013
1 parent 294ce86 commit ee7b9bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion imp/js/dimpbase.js
Original file line number Diff line number Diff line change
Expand Up @@ -3579,7 +3579,9 @@ var DimpBase = {
$('foldersSidebar').hide();

[ Object.values(this.mboxes), Object.values(this.smboxes) ].flatten().compact().each(function(elt) {
this.deleteMboxElt(elt, true);
try {
this.deleteMboxElt(elt, true);
} catch (e) {}
}, this);

this._listMboxes({ reload: 1, mboxes: this.view });
Expand Down

0 comments on commit ee7b9bb

Please sign in to comment.