[WO-805] Do not attempt to write to undefined when folders are not yet loaded

master
Felix Hammerl 9 years ago
parent 137c6fe971
commit b0476989fb

@ -100,6 +100,12 @@ var NavigationCtrl = function($scope, $location, $q, account, email, outbox, not
var ob = _.findWhere($scope.account.folders, {
type: config.outboxMailboxType
});
if (!ob) {
// the outbox folder has not been initialized yet
return;
}
ob.count = count;
return $q(function(resolve) {

Loading…
Cancel
Save