Bug 571030 - Properly decode non-ASCII message subject in activity manager. r=jcranmer

This commit is contained in:
aceman 2014-05-26 12:05:00 -04:00
Родитель aaa38ed2c9
Коммит 066f71e671
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -160,7 +160,7 @@ let sendLaterModule =
// We want to use the identity and subject later, so store them for now.
this._identity = aIdentity;
if (aMessageHeader)
this._subject = aMessageHeader.subject;
this._subject = aMessageHeader.mime2DecodedSubject;
// Create the process to display the send activity.
let process = this._newProcess("sendingMessage", true);