summaryrefslogtreecommitdiff
path: root/lib/VNDB
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-07-18 20:53:23 +0200
committerYorhel <git@yorhel.nl>2009-07-18 20:53:23 +0200
commit4df0638b6f615489bd946c03753b3bbe0269e3b2 (patch)
tree4c2ede71b3902d9f4b6a9df7d32479107ba12681 /lib/VNDB
parentae53633780260b152a105c83fb4a7a72cd82d33b (diff)
Notify Multi::Image for new cover images via LISTEN/NOTIFY
Yay! Another weird shared-memory-command optimized away. And the image resizer reacts a lot faster now. Noticably, even.
Diffstat (limited to 'lib/VNDB')
-rw-r--r--lib/VNDB/Handler/VNEdit.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/VNDB/Handler/VNEdit.pm b/lib/VNDB/Handler/VNEdit.pm
index 8e4de7ec..9fb276a6 100644
--- a/lib/VNDB/Handler/VNEdit.pm
+++ b/lib/VNDB/Handler/VNEdit.pm
@@ -130,12 +130,11 @@ sub _uploadimage {
return undef;
}
- # store the file and let multi handle it
+ # get image ID and move it to the correct location
my $imgid = $self->dbVNImageId;
my $new = sprintf '%s/static/cv/%02d/%d.jpg', $VNDB::ROOT, $imgid%100, $imgid;
rename $tmp, $new or die $!;
chmod 0666, $new;
- $self->multiCmd("coverimage $imgid");
return -1*$imgid;
}