Bug 288696 HandleMDNResponse should not be returning 0

p=me r=mscott sr=bienvenu
This commit is contained in:
bugzilla%arlen.demon.co.uk 2005-04-02 01:45:06 +00:00
Родитель bad3378fe7
Коммит 6b352d8552
1 изменённых файлов: 6 добавлений и 4 удалений

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

@ -2405,11 +2405,13 @@ function HandleMDNResponse(aUrl)
var msgHdr = messenger.messageServiceFromURI(msgURI).messageURIToMsgHdr(msgURI);
var mimeHdr;
try {
mimeHdr = aUrl.mimeHeaders;
} catch (ex) { return 0;}
mimeHdr = aUrl.mimeHeaders;
} catch (ex) {
return;
}
// If we didn't get the message id when we downloaded the message header,
// we cons up an md5: message id. If we've done that, we'll try to extract
// the message id out of the mime headers for the whole message.