Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #11246 from ian-liu/email/Bug887700_cannot_load_em…
Browse files Browse the repository at this point in the history
…ail_in_Inbox_after_OTA_updated

Bug 887700 - [OTA] [Data Migration] [Email] Cannot load email in Inbox after update from v1.0.1 to v1.1.0. r=asuth
  • Loading branch information
asutherland committed Jul 30, 2013
2 parents cb87fd8 + ddf6684 commit 2d9ee5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/email/js/ext/mailapi/activesync/protocollayer.js
Expand Up @@ -2876,7 +2876,7 @@
// Build the URL parameters.
var params = [
['Cmd', aCommand],
['User', this._email],
['User', this._username],
['DeviceId', this._deviceId],
['DeviceType', this._deviceType]
];
Expand Down
2 changes: 1 addition & 1 deletion apps/email/js/ext/mailapi/main-frame-setup.js
Expand Up @@ -540,7 +540,7 @@ var ContactCache = exports.ContactCache = {
},

resolvePeeps: function(addressPairs) {
if (addressPairs === null)
if (addressPairs == null)
return null;
var resolved = [];
for (var i = 0; i < addressPairs.length; i++) {
Expand Down

0 comments on commit 2d9ee5a

Please sign in to comment.