diff --git a/src/components/AllApps.vue b/src/components/AllApps.vue index b2384beb3858310b56f2114eac7bdea2f14a6914..7997e1ca36a37e14dd6b74fa5e0f90740861fa39 100755 --- a/src/components/AllApps.vue +++ b/src/components/AllApps.vue @@ -99,7 +99,7 @@ export default { }, getDetails() { axios - .get(generateUrl('/apps/files/ajax/getstoragestats.php')) + .get(generateUrl('/apps/files/ajax/getstoragestats')) .then((response) => { this.userInfo = response.data.data }) diff --git a/src/components/StorageLayout.vue b/src/components/StorageLayout.vue index 3635405666fa6cc5b9ea9bad287dff1c9c87d87d..75481bd88b5dcaa4f11bb3bd5befcda9bd79517f 100755 --- a/src/components/StorageLayout.vue +++ b/src/components/StorageLayout.vue @@ -129,7 +129,7 @@ export default { getDetails() { this.storageFetchStatus = false axios - .get(generateUrl('/apps/files/ajax/getstoragestats.php')) + .get(generateUrl('/apps/files/ajax/getstoragestats')) .then((response) => { this.storageInfo = response.data.data this.storageFetchStatus = true