fix(settings): When testing server stability, request URL with trailing slash

This prevents one HTTP request for most situations (301 from `apps/files` to `apps/files/`)
and helps users with faulty reverse-proxy configuration.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen 1 month ago
parent 2967c21465
commit 5ec7d2e659

@ -186,7 +186,7 @@ const actions = {
})
// check for server health
return api.get(generateUrl('apps/files'))
return api.get(generateUrl('apps/files/'))
.then(() => {
if (response.data.update_required) {
showInfo(

Loading…
Cancel
Save