Update get library item api endpoint to remove unnecessary authors include query param

This commit is contained in:
advplyr 2023-09-03 10:04:14 -05:00
parent 1b1bdea3c8
commit 7567e91878
3 changed files with 24 additions and 15 deletions

View file

@ -160,7 +160,7 @@ export default {
}
// Include episode downloads for podcasts
var item = await app.$axios.$get(`/api/items/${params.id}?expanded=1&include=authors,downloads,rssfeed`).catch((error) => {
var item = await app.$axios.$get(`/api/items/${params.id}?expanded=1&include=downloads,rssfeed`).catch((error) => {
console.error('Failed', error)
return false
})