Apply fixes from StyleCI

This commit is contained in:
HDVinnie
2018-12-30 19:19:34 +00:00
committed by StyleCI Bot
parent 8ad319b5cf
commit 5a718ba273
7 changed files with 102 additions and 102 deletions
+2 -2
View File
@@ -826,13 +826,13 @@ class TorrentController extends Controller
if ($torrent->tmdb && $torrent->tmdb != 0) {
$movie = $client->scrape('tv', null, $torrent->tmdb);
} else {
$movie = $client->scrape('tv', 'tt' . $torrent->imdb);
$movie = $client->scrape('tv', 'tt'.$torrent->imdb);
}
} else {
if ($torrent->tmdb && $torrent->tmdb != 0) {
$movie = $client->scrape('movie', null, $torrent->tmdb);
} else {
$movie = $client->scrape('movie', 'tt' . $torrent->imdb);
$movie = $client->scrape('movie', 'tt'.$torrent->imdb);
}
}