Skip to content

Commit

Permalink
currentMovie fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
RexusWolf committed Aug 24, 2020
1 parent f9b7d14 commit 50f08dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/moviesView/N2wCinemaCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export default {
methods: {
goToMovie() {
let route = 'http://127.0.0.1:5000/movies/' + this.id;
if (this.user.userId) {
route += '/' + this.user.userId;
if (this.user.user_id) {
route += '/' + this.user.user_id;
}
console.debug(route);
const previousThis = this;
Expand Down

0 comments on commit 50f08dd

Please sign in to comment.