Bug 420770 - Open saved message doesn't work anymore (since bug 412822 changed what the filepicker gives us, that we then cram things into the .query of), r=mkmelin

This commit is contained in:
philringnalda%gmail.com 2008-03-05 05:47:15 +00:00
Родитель 434eccf1a1
Коммит 724d5d2f75
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1717,7 +1717,7 @@ function MsgOpenFromFile()
return;
}
var uri = fp.fileURL;
var uri = fp.fileURL.QueryInterface(Components.interfaces.nsIURL);
uri.query = "type=application/x-message-display";
window.openDialog( "chrome://messenger/content/messageWindow.xul", "_blank", "all,chrome,dialog=no,status,toolbar", uri, null, null );