From a0490e15b4f2e4617cb943d5266b5eefb9393c7a Mon Sep 17 00:00:00 2001 From: lexmiller Date: Sun, 6 Jun 2021 13:55:47 +0900 Subject: [PATCH] IMDB 2021 format: Fix origtitle --- lib/IMDB_Movie.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/IMDB_Movie.pm b/lib/IMDB_Movie.pm index 3dbaee2..92f147b 100644 --- a/lib/IMDB_Movie.pm +++ b/lib/IMDB_Movie.pm @@ -411,6 +411,7 @@ sub _otitle { $tag = _jump_class($parser, "originalTitle") or return undef; $otitle = get_text_html($parser); $otitle = unqote_and_strip_space($otitle); + $otitle =~ s/^Original title: //; return $otitle; }