chore: tmdb client cleanup

This commit is contained in:
2025-09-02 16:37:26 -05:00
parent b8b71fa5b3
commit fc797a3a0f
12 changed files with 181 additions and 508 deletions

View File

@@ -6,6 +6,6 @@ class ImdbMatcher
{
public static function isMatch(string $imdbId): bool
{
return preg_match('/^tt\d{7}$/', $imdbId);
return preg_match('/^tt\d{7,20}$/', $imdbId);
}
}