File tree 3 files changed +0
-7
lines changed
3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -235,11 +235,6 @@ export class MovieMapper
235
235
name : copy . collections . name ,
236
236
}
237
237
: undefined ,
238
- studio : {
239
- id : copy . studios [ 0 ] ?. providers ?. tmdb ?. id ?. toString ( ) || '0' ,
240
- name : copy . studios [ 0 ] . name ,
241
- logo_path : copy . studios [ 0 ] . logoPath ,
242
- } ,
243
238
collection : copy . collections ?. movies . map ( ( movie ) => ( {
244
239
id : `${ movie . providers ?. plex ?. id || movie . providers ?. tmdb ?. id || 0 } ` ,
245
240
name : movie . name ,
Original file line number Diff line number Diff line change @@ -190,7 +190,6 @@ export class MovieService {
190
190
try {
191
191
const optionsAsString =
192
192
options && Object . keys ( options ) . length ? toQueryString ( options ) : '' ;
193
- console . log ( optionsAsString ) ;
194
193
const results = await this . cacheProvider . wrap (
195
194
`movie.discover${ optionsAsString } ` ,
196
195
async ( ) => {
Original file line number Diff line number Diff line change @@ -395,7 +395,6 @@ export class TmdbMovieProvider
395
395
try {
396
396
const optionsAsString =
397
397
options && Object . keys ( options ) . length ? toQueryString ( options ) : '' ;
398
- console . log ( optionsAsString ) ;
399
398
const results = await this . cache . wrap (
400
399
`tmdb.movie.discover${ optionsAsString } ` ,
401
400
async ( ) => {
You can’t perform that action at this time.
0 commit comments