Changeset 398


Ignore:
Timestamp:
Jul 20, 2012, 2:11:04 AM (13 years ago)
Author:
dmik
Message:

icedtea-web: Fix exception when locating default Firefox user settings directory.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/icedtea-web/netx/net/sourceforge/jnlp/browser/FirefoxPreferencesFinder.java

    r348 r398  
    4747
    4848import net.sourceforge.jnlp.runtime.JNLPRuntime;
     49import net.sourceforge.jnlp.config.Defaults;
    4950
    5051/**
     
    6364    public static File find() throws IOException {
    6465
    65         String configPath = System.getProperty("user.home") + File.separator + ".mozilla"
     66        String configPath = System.getProperty("user.home") + File.separator
     67                + (Defaults.OS_DOS_LIKE ? "Mozilla" : ".mozilla")
    6668                + File.separator + "firefox" + File.separator;
    6769
Note: See TracChangeset for help on using the changeset viewer.