1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 05:25:26 +02:00

Fix about page (#563)

* Fix error 500 in about page

* Fix log details not showing
This commit is contained in:
sephrat 2021-06-18 14:50:51 +02:00 committed by GitHub
parent 8607b9891b
commit 9d64345321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ export const metaAPI = {
},
async getLogText(num) {
const response = await apiReq.get(API_ROUTES.debugLog(num));
const response = await apiReq.get(API_ROUTES.debugLogNum(num));
return response.data;
},