From d27d8655bb8c7eb7b4aa894ed26d5ad6d18cde78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Sat, 27 Jan 2024 18:09:48 +0100 Subject: [PATCH] gallery: make it reverse proxy friendly --- public/gallery.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/gallery.js b/public/gallery.js index decb197..73eb9ad 100644 --- a/public/gallery.js +++ b/public/gallery.js @@ -10,7 +10,7 @@ function call(method, params) { callActive++ return m.request({ method: "POST", - url: `/api/${method}`, + url: `api/${method}`, body: params, }).then(result => { callActive-- @@ -98,7 +98,7 @@ let Thumbnail = { if (!e.thumbW || !e.thumbH) return m('.thumbnail.missing', {...vnode.attrs, info: null}) return m('img.thumbnail', {...vnode.attrs, info: null, - src: `/thumb/${e.sha1}`, width: e.thumbW, height: e.thumbH, + src: `thumb/${e.sha1}`, width: e.thumbW, height: e.thumbH, loading}) }, } @@ -494,7 +494,7 @@ let View = { view(vnode) { const view = m('.view', [ ViewModel.sha1 !== undefined - ? m('img', {src: `/image/${ViewModel.sha1}`, + ? m('img', {src: `image/${ViewModel.sha1}`, width: ViewModel.width, height: ViewModel.height}) : "No image.", ])