Skip to content

Commit a54e69c

Browse files
authored
Merge pull request #44939 from nextcloud/fix/reduce-http-noise
fix(settings): Save one HTTP request on enabling an app
2 parents 79a75ca + c81887c commit a54e69c

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

apps/settings/src/store/apps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ const actions = {
197197
})
198198

199199
// check for server health
200-
return api.get(generateUrl('apps/files'))
200+
return api.get(generateUrl('apps/files/'))
201201
.then(() => {
202202
if (response.data.update_required) {
203203
showInfo(

core/css/inputs.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/inputs.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/server.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)