diff --git a/backend/app/Services/TMDB.php b/backend/app/Services/TMDB.php index 4cbefd6..fb017d7 100644 --- a/backend/app/Services/TMDB.php +++ b/backend/app/Services/TMDB.php @@ -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. diff --git a/backend/config/services.php b/backend/config/services.php index 3d1f26a..d4c5bb1 100644 --- a/backend/config/services.php +++ b/backend/config/services.php @@ -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' => [