getThumbnail will generate one if it doesn't exist yet

...so we don't have to generate directly on creation.
This commit is contained in:
Mikael Nordfeldth 2015-01-26 00:30:01 +01:00
parent 96b63d6f91
commit b5a980f082

View File

@ -484,11 +484,9 @@ class QvitterPlugin extends Plugin {
foreach ($attachments as $attachment) {
try {
$enclosure_o = $attachment->getEnclosure();
$thumb = File_thumbnail::getKV('file_id', $attachment->id);
if(isset($thumb->url)) {
$attachment_url_to_id[$enclosure_o->url]['id'] = $attachment->id;
$attachment_url_to_id[$enclosure_o->url]['thumb_url'] = $thumb->url;
}
$thumb = $attachment->getThumbnail();
$attachment_url_to_id[$enclosure_o->url]['id'] = $attachment->id;
$attachment_url_to_id[$enclosure_o->url]['thumb_url'] = $thumb->getUrl();
} catch (ServerException $e) {
// There was not enough metadata available
}