Skip to content

Commit

Permalink
mapfishapp datadir - fixing path
Browse files Browse the repository at this point in the history
Fixing path to the addons in the webapp when no georchestra.datadir is
provided.
  • Loading branch information
pmauduit committed Sep 7, 2015
1 parent bd340bd commit cc26a6c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,7 +107,7 @@ private String getMfappAddonPath() {
if ((georchestraConfiguration != null) && (georchestraConfiguration.activated())) {
path = new File(georchestraConfiguration.getContextDataDir(), "addons").getAbsolutePath();
} else {
path = context.getRealPath("/addons");
path = context.getRealPath("/app/addons");
}
return path;
}
Expand Down

0 comments on commit cc26a6c

Please sign in to comment.