mirror of
https://github.com/moparisthebest/mail
synced 2024-12-23 07:48:48 -05:00
fix desktop for grunt dev
This commit is contained in:
parent
dd9ea28772
commit
179896ddfe
@ -67,10 +67,7 @@ define(function(require) {
|
||||
emailDao.getBody({
|
||||
folder: getFolder().path,
|
||||
message: email
|
||||
}, function(error) {
|
||||
$scope.$apply();
|
||||
$scope.onError(error);
|
||||
});
|
||||
}, $scope.onError);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -83,19 +80,16 @@ define(function(require) {
|
||||
return;
|
||||
}
|
||||
|
||||
$scope.state.mailList.selected = email;
|
||||
$scope.state.read.toggle(true);
|
||||
|
||||
// if we're in the outbox, don't decrypt as usual
|
||||
if (getFolder().type !== 'Outbox') {
|
||||
emailDao.decryptMessageContent({
|
||||
message: email
|
||||
}, function(error) {
|
||||
$scope.$apply();
|
||||
$scope.onError(error);
|
||||
});
|
||||
}, $scope.onError);
|
||||
}
|
||||
|
||||
$scope.state.mailList.selected = email;
|
||||
$scope.state.read.toggle(true);
|
||||
|
||||
// if the email is unread, please sync the new state.
|
||||
// otherweise forget about it.
|
||||
if (!email.unread) {
|
||||
|
Loading…
Reference in New Issue
Block a user