From 4488e53ff239a03f52dad16305713c9fa2d479c6 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 14 Jan 2022 17:13:17 +0100 Subject: [PATCH] getMovie & getShow should also request cast data --- src/components/Movie.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Movie.vue b/src/components/Movie.vue index ee82864..991ed34 100644 --- a/src/components/Movie.vue +++ b/src/components/Movie.vue @@ -303,7 +303,7 @@ export default { this.prevDocumentTitle = store.getters["documentTitle/title"]; if (this.type === "movie") { - getMovie(this.id, false, true) + getMovie(this.id, true, true) .then(this.parseResponse) .catch(error => { this.$router.push({ name: "404" }); @@ -315,7 +315,7 @@ export default { this.$router.push({ name: "404" }); }); } else { - getShow(this.id, false) + getShow(this.id, true, true) .then(this.parseResponse) .catch(error => { this.$router.push({ name: "404" });