diff options
author | Guilhem Moulin <guilhem.moulin@ens-lyon.org> | 2012-02-19 00:44:25 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@ens-lyon.org> | 2012-02-19 00:44:25 +0100 |
commit | 0ec5831d64fe108e3f4a7c621fbe872338996616 (patch) | |
tree | 5b23eafab8b2c45781ca5d3c036602bafaa135ea | |
parent | 2c13efc16088fab44cadf6c819b286d51100e527 (diff) |
wrong id
-rwxr-xr-x | videoadd.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/videoadd.pl b/videoadd.pl index 9e7788b..d76ad14 100755 --- a/videoadd.pl +++ b/videoadd.pl @@ -290,7 +290,7 @@ if ( defined ($imdb{crit}) and &runIMDB() ) { # Got a single result; Process the movie $new{title} = $movie->title(); $new{language} = lc join (', ', @{$movie->language()}); - $new{imdbid} = $movie->id(); + $new{imdbid} = 'imdb:' $movie->id(); $new{year} = $movie->year(); $new{imgurl} = $movie->cover(); $new{director} = join ', ', map {$_->{name}} @{$movie->directors()}; |