diff options
-rw-r--r-- | app.js | 2 | ||||
-rw-r--r-- | locales/de.json | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -502,7 +502,7 @@ app.post('/uploadimage', function (req, res) { switch (config.imageUploadType) { case 'filesystem': res.send({ - link: url.resolve(config.serverurl, files.image.path.match(/^public(.+$)/)[1]) + link: url.resolve(config.serverurl + '/', files.image.path.match(/^public\/(.+$)/)[1]) }); break; diff --git a/locales/de.json b/locales/de.json index 4d8ba05f..41d89777 100644 --- a/locales/de.json +++ b/locales/de.json @@ -47,7 +47,7 @@ "View": "Anzeigen", "Both": "Beides", "Help": "Hilfe", - "Upload Image": "Foto hochloaden", + "Upload Image": "Foto hochladen", "Menu": "MenĂ¼", "This page need refresh": "Bitte laden Sie die Seite neu", "You have an incompatible client version.": "Ihre Client Version ist nicht mit dem Server kompatibel", |