Skip to content

Commit

Permalink
get aragonia movies from reservaentradas
Browse files Browse the repository at this point in the history
  • Loading branch information
ender-null committed Apr 13, 2024
1 parent 6d152dc commit ec22935
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/data/cinemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ export const cinemas: CinemaData = {
address: 'Avenida de Juan Pablo II, 43, 50009 Zaragoza',
location: 'Zaragoza',
website: 'https://www.cinespalafox.com/cartelera-cines-aragonia.html',
source: 'https://www.cinespalafox.com/cartelera-cines-aragonia.html',
source: 'https://www.reservaentradas.com/cine/zaragoza/cinesaragonia',
},
palafox: {
name: 'Cines Palafox',
address: 'Paseo de la Independencia, 12, 50004 Zaragoza',
location: 'Zaragoza',
website: 'https://www.cinespalafox.com/cartelera-cines-palafox.html',
source: 'https://www.cinespalafox.com/cartelera-cines-palafox.html',
source: 'https://www.reservaentradas.com/cine/zaragoza/cinespalafox/',
},
cervantes: {
name: 'Sala Cervantes',
address: 'Calle Marqués de Casa Jiménez, 2, 50004 Zaragoza',
location: 'Zaragoza',
website: 'https://www.cinespalafox.com/cartelera-cine-cervantes.html',
source: 'https://www.cinespalafox.com/cartelera-cine-cervantes.html',
source: 'https://www.reservaentradas.com/cine/zaragoza/cervantes/',
},
grancasa: {
name: 'Cinesa Grancasa',
Expand Down
4 changes: 1 addition & 3 deletions src/services/cinema.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,10 @@ export class CinemaService {
case 'abcgranturia':
case 'abcelsaler':
case 'abcgandia':
movies = await this.getMoviesReservaEntradas(id);
break;
case 'palafox':
case 'aragonia':
case 'cervantes':
movies = await this.getMoviesPalafox(id);
movies = await this.getMoviesReservaEntradas(id);
break;
case 'grancasa':
case 'venecia':
Expand Down

0 comments on commit ec22935

Please sign in to comment.