mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-11 10:08:41 +00:00
Fix SeaMonkey regression from bug 384374 landing (no bug); r+sr=bz
This commit is contained in:
parent
445a6b2f62
commit
570912b643
@ -641,7 +641,8 @@ nsHelperAppDialog.prototype = {
|
||||
// Verify typed app path, if necessary.
|
||||
if ( this.dialogElement( "openUsing" ).selected ) {
|
||||
var helperApp = this.helperAppChoice();
|
||||
if ( !helperApp || !helperApp.executable || !helperApp.exists() ) {
|
||||
if ( !helperApp || !helperApp.executable ||
|
||||
!helperApp.executable.exists() ) {
|
||||
// Show alert and try again.
|
||||
var msg = this.replaceInsert( this.getString( "badApp" ), 1, this.dialogElement( "appPath" ).value );
|
||||
var svc = Components.classes[ "@mozilla.org/embedcomp/prompt-service;1" ]
|
||||
|
Loading…
x
Reference in New Issue
Block a user