Adds config file (quanlib.ini) support.
[quanweb.git] / main / handler.go
index 2d8076e35720c20e5422ecd87fe9eca83f70c7c9..cd35a7640c124d2690f390ff9d9f1c92ce2fc251 100644 (file)
@@ -29,10 +29,10 @@ func bookMimeType(bookPath string) string {
 }
 
 func efsPathForId(efsId int) string {
-  config := getConfig()
+  config := GetConfig()
 
   idStr := fmt.Sprintf("%010d", efsId)
-  path := fmt.Sprintf("%s/%s/%s/%s/%s/%s.dat", config.efsBasePath, idStr[0:2], idStr[2:4], idStr[4:6], idStr[6:8], idStr)
+  path := fmt.Sprintf("%s/efs/%s/%s/%s/%s/%s.dat", config.basePath, idStr[0:2], idStr[2:4], idStr[4:6], idStr[6:8], idStr)
 
   return path
 }