Fix:Authors page to only include library items from the current library #1049

This commit is contained in:
advplyr 2022-10-06 17:06:06 -05:00
parent 94012e5dff
commit 793233e782
2 changed files with 3 additions and 1 deletions

View file

@ -44,7 +44,7 @@
<script>
export default {
async asyncData({ store, app, params, redirect }) {
const author = await app.$axios.$get(`/api/authors/${params.id}?include=items,series`).catch((error) => {
const author = await app.$axios.$get(`/api/authors/${params.id}?library=${store.state.libraries.currentLibraryId}&include=items,series`).catch((error) => {
console.error('Failed to get author', error)
return null
})