diff --git a/client/components/app/BookShelfCategorized.vue b/client/components/app/BookShelfCategorized.vue index 52f37540..bb617086 100644 --- a/client/components/app/BookShelfCategorized.vue +++ b/client/components/app/BookShelfCategorized.vue @@ -167,8 +167,8 @@ export default { this.loaded = true }, async fetchCategories() { - var categories = await this.$axios - .$get(`/api/libraries/${this.currentLibraryId}/personalized`) + const categories = await this.$axios + .$get(`/api/libraries/${this.currentLibraryId}/personalized?include=rssfeed`) .then((data) => { return data }) diff --git a/client/pages/library/_library/index.vue b/client/pages/library/_library/index.vue index 6b50405c..f235028c 100644 --- a/client/pages/library/_library/index.vue +++ b/client/pages/library/_library/index.vue @@ -8,8 +8,8 @@