This commit is contained in:
bzbarsky%mit.edu 2007-07-27 01:24:34 +00:00
Родитель a7e5688207
Коммит a4da64803d
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -461,7 +461,13 @@ nsHelperAppDialog.prototype = {
// initAppAndSaveToDiskValues:
initAppAndSaveToDiskValues: function() {
// Fill in helper app info, if there is any.
this.chosenApp = this.mLauncher.MIMEInfo.preferredApplicationHandler;
try {
this.chosenApp =
this.mLauncher.MIMEInfo.preferredApplicationHandler
.QueryInterface(Components.interfaces.nsILocalHandlerApp);
} catch (e) {
this.chosenApp = null;
}
// Initialize "default application" field.
this.initDefaultApp();