Changeset bf505e for content/modules/plugins/conversation.js
- Timestamp:
- Nov 15, 2011, 12:22:28 PM (11 years ago)
- Branches:
- ng_0.9
- Children:
- d8da4b
- Parents:
- f17e5d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
content/modules/plugins/conversation.js
rf17e5d3 rbf505e 29 29 30 30 let _changeIdentityToSmartIdentity = function(identityData) { 31 Log.debug(" ##changeIdentityToSmartIdentity\n");31 Log.debug("changeIdentityToSmartIdentity\n"); 32 32 33 33 if ( identityData.id.key != null ) { 34 34 currentParams.identity = AccountManager.getIdentity(identityData.id.key); 35 Log.debug(" ##changed base identity to ", identityData.id.key);35 Log.debug("changed base identity to ", identityData.id.key); 36 36 virtualSenderNameElem.text(currentIdSenderName); 37 37 } 38 38 virtualIdInUse = !(identityData.isExistingIdentity(false)); 39 Log.debug(" ##changeIdentityToSmartIdentity virtualIdInUse=" + virtualIdInUse + "\n");39 Log.debug("changeIdentityToSmartIdentity virtualIdInUse=" + virtualIdInUse + "\n"); 40 40 if (virtualIdInUse) { 41 41 currentIdentityData = identityData; … … 73 73 var existingIDIndex = localSmartIdentityCollection._foundExistingIdentity(); 74 74 if (existingIDIndex) { 75 Log.debug(" ##smartIdentity: found existing Identity, use without interaction.\n", existingIDIndex.key);75 Log.debug("smartIdentity: found existing Identity, use without interaction.\n", existingIDIndex.key); 76 76 changeIdentityToSmartIdentity(localSmartIdentityCollection._allIdentities, existingIDIndex.key); 77 77 return; … … 93 93 onMessageBeforeSendOrPopout: function(aAddress, aStatus, aPopout) { 94 94 let toAddrList = aAddress.to.concat(aAddress.cc); 95 Log.debug(" ##onMessageBeforeSendOrPopup");95 Log.debug("onMessageBeforeSendOrPopup"); 96 96 97 97 if (virtualIdInUse) {
Note: See TracChangeset
for help on using the changeset viewer.