imdbphp icon indicating copy to clipboard operation
imdbphp copied to clipboard

quick fix for series cinematogropher

Open AucT opened this issue 3 years ago • 1 comments

https://github.com/tboothman/imdbphp/blob/master/src/Imdb/Title.php line 1848

$cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Cinematography by");

change to

$cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Cinematography by");
        if (!$cinematographer_rows) {
            $cinematographer_rows = $this->get_table_rows($this->getPage('Credits'), "Series Cinematography by");
        }

AucT avatar Jul 18 '22 08:07 AucT

Good catch. But if you want this to be changed i suggest to make a PR (if you can that is)

duck7000 avatar Jul 20 '22 08:07 duck7000