1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 06:32:34 +01:00

update TMDb and IMDb asset calls to https #78

This commit is contained in:
devfake 2017-07-13 09:07:07 +02:00
parent bc9ac808b2
commit 56a1dce41c
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
private $apiKey;
private $translation;
private $base = 'http://api.themoviedb.org';
private $base = 'https://api.themoviedb.org';
/**
* Get the API Key for TMDb and create an instance of Guzzle.

View File

@ -37,13 +37,13 @@ return [
'tmdb' => [
'key' => env('TMDB_API_KEY'),
'poster' => 'http://image.tmdb.org/t/p/w185',
'poster_subpage' => 'http://image.tmdb.org/t/p/w342',
'backdrop' => 'http://image.tmdb.org/t/p/w1280',
'poster' => 'https://image.tmdb.org/t/p/w185',
'poster_subpage' => 'https://image.tmdb.org/t/p/w342',
'backdrop' => 'https://image.tmdb.org/t/p/w1280',
],
'imdb' => [
'url' => 'http://www.imdb.com/title/',
'url' => 'https://www.imdb.com/title/',
],
'fp' => [