diff src/nabble/model/SiteImpl.java @ 2:abe0694e9849

replace local_dir with home_dir
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 25 Mar 2019 13:59:13 -0600
parents 7ecd1a4ef557
children 1010f557927f
line wrap: on
line diff
--- a/src/nabble/model/SiteImpl.java	Thu Mar 21 19:27:36 2019 -0600
+++ b/src/nabble/model/SiteImpl.java	Mon Mar 25 13:59:13 2019 -0600
@@ -1062,7 +1062,7 @@
 	}
 
 	private static final String SALT = "zDf3s";
-	private static final File schemaDir = new File((String)Init.get("local_dir")+"schemas/");
+	private static final File schemaDir = new File((String)Init.get("home_dir")+"local/schemas/");
 
 	private static File getBackupFile(long siteId) {
 		int hash = Math.abs(( SALT + siteId ).hashCode());