diff --git a/source/yacy.java b/source/yacy.java index 97c19f7bf..0cfc8e13b 100644 --- a/source/yacy.java +++ b/source/yacy.java @@ -254,9 +254,9 @@ public final class yacy { File htTemplatePath = new File(sb.getRootPath(), sb.getConfig("htTemplatePath","htdocs")); // create default notifier picture - if (!((new File(htRootPath, "env/pictures/notifier.gif")).exists())) try { - serverFileUtils.copy(new File(htRootPath, "env/pictures/empty.gif"), - new File(htRootPath, "env/pictures/notifier.gif")); + if (!((new File(htRootPath, "env/grafics/notifier.gif")).exists())) try { + serverFileUtils.copy(new File(htRootPath, "env/grafics/empty.gif"), + new File(htRootPath, "env/grafics/notifier.gif")); } catch (IOException e) {} if (!(htDocsPath.exists())) htDocsPath.mkdir();