X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2FInstance.java;h=a6462323492bf3356413403778bcaeb29b504b4d;hb=e64228f886196dd1ad602c46c8b2604b5b0558c9;hp=74897491f7a0b93c60893b828fac0ec82ef5111a;hpb=13fdb89adc017452a7a72f552b933f8e7b869413;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/Instance.java b/src/be/nikiroo/fanfix/Instance.java index 7489749..a646232 100644 --- a/src/be/nikiroo/fanfix/Instance.java +++ b/src/be/nikiroo/fanfix/Instance.java @@ -325,8 +325,8 @@ public class Instance { */ public static boolean isVersionCheckNeeded() { try { - long wait = config.getInteger(Config.NETWORK_UPDATE_INTERVAL, 0) * 24 * 60 - * 60 * 1000; + long wait = config.getInteger(Config.NETWORK_UPDATE_INTERVAL, 0) + * 24 * 60 * 60 * 1000; if (wait >= 0) { String lastUpString = IOUtils.readSmallFile(new File(configDir, "LAST_UPDATE")); @@ -370,18 +370,14 @@ public class Instance { } /** - * The configuration directory (will check, in order of preference, - * {@link Bundles#getDirectory()}, the system properties, the environment - * and then defaults to $HOME/.fanfix). + * The configuration directory (will check, in order of preference, the + * system properties, the environment and then defaults to + * {@link Instance#getHome()}/.fanfix). * * @return the config directory */ private static String getConfigDir() { - String configDir = Bundles.getDirectory(); - - if (configDir == null) { - configDir = System.getProperty("CONFIG_DIR"); - } + String configDir = System.getProperty("CONFIG_DIR"); if (configDir == null) { configDir = System.getenv("CONFIG_DIR"); @@ -460,6 +456,9 @@ public class Instance { String libDir = System.getenv("BOOKS_DIR"); if (libDir == null || libDir.isEmpty()) { libDir = config.getString(Config.LIBRARY_DIR, "$HOME/Books"); + if (!getFile(libDir).isAbsolute()) { + libDir = new File(configDir, libDir).getPath(); + } } try { lib = new LocalLibrary(getFile(libDir)); @@ -508,11 +507,7 @@ public class Instance { * @return the path */ private static File getFile(Config id, File def) { - String path = config.getString(id); - if (path != null && path.isEmpty()) { - path = def.getPath(); - } - + String path = config.getString(id, def.getPath()); return getFile(path); } @@ -522,11 +517,7 @@ public class Instance { * @return the path */ private static File getFile(UiConfig id, File def) { - String path = uiconfig.getString(id); - if (path != null && path.isEmpty()) { - path = def.getPath(); - } - + String path = uiconfig.getString(id, def.getPath()); return getFile(path); }