diff --git a/Blacklight/Movie.php b/Blacklight/Movie.php index 9d4319ef1..3505c7c6d 100755 --- a/Blacklight/Movie.php +++ b/Blacklight/Movie.php @@ -1195,7 +1195,7 @@ class Movie { //If we found a year, try looking in a 4 year range. $check = MovieInfo::query() - ->where('title', 'LIKE', '%'.$this->currentTitle.'%' ); + ->where('title', 'LIKE', '%'.$this->currentTitle.'%'); if ($this->currentYear !== false) { $start = Carbon::parse($this->currentYear)->subYears(2)->year;