зеркало из https://github.com/mozilla/gecko-dev.git
Bug 371647 ConvertToUnicode in mailWidgets.xml fails at initializing the notification r+sr=mscott
This commit is contained in:
Родитель
450988d519
Коммит
107230068c
|
@ -2116,7 +2116,15 @@
|
|||
var previewText = msgHdr.getStringProperty('preview');
|
||||
// convert the preview text from utf-8 to unicode
|
||||
if (previewText)
|
||||
msgPopup.setAttribute('previewText', unicodeConverter.ConvertToUnicode(previewText));
|
||||
{
|
||||
try
|
||||
{
|
||||
var text = unicodeConverter.ConvertToUnicode(previewText);
|
||||
if (text)
|
||||
msgPopup.setAttribute('previewText', text);
|
||||
}
|
||||
catch (ex) { }
|
||||
}
|
||||
|
||||
var names = {};
|
||||
var emails = {};
|
||||
|
|
Загрузка…
Ссылка в новой задаче