Skip to content

Commit

Permalink
Remove $country from TVDB\getShowInfo()
Browse files Browse the repository at this point in the history
The function does not take more than 1 parameter.
  • Loading branch information
Fossil authored Apr 4, 2023
1 parent a30be99 commit 09a7bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Blacklight/processing/tv/TVDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function processSite($groupID, $guidChar, $process, bool $local = false):
);

// Get the show from TVDB
$tvdbShow = $this->getShowInfo((string) $release['cleanname'], $country);
$tvdbShow = $this->getShowInfo((string) $release['cleanname']);

if (\is_array($tvdbShow)) {
$tvdbShow['country'] = $country;
Expand Down

0 comments on commit 09a7bad

Please sign in to comment.