Revert "Respect photo thumbnails storage in import"

This reverts commit e8918ca149
This commit is contained in:
Max Kostikov 2019-06-21 22:42:38 +02:00
parent e8918ca149
commit 8730bbac2f

View File

@ -371,19 +371,21 @@ function import_channel_photo($photo, $type, $aid, $uid) {
// photo size // photo size
$img->scaleImageSquare(300); $img->scaleImageSquare(300);
$r = $img->storeThumbnail($p, PHOTO_RES_PROFILE_300); $r = $img->save($p);
if($r === false) if($r === false)
$photo_failure = true; $photo_failure = true;
// thumb size // thumb size
$img->scaleImage(80); $img->scaleImage(80);
$r = $img->storeThumbnail($p, PHOTO_RES_PROFILE_80); $p['imgscale'] = 5;
$r = $img->save($p);
if($r === false) if($r === false)
$photo_failure = true; $photo_failure = true;
// micro size // micro size
$img->scaleImage(48); $img->scaleImage(48);
$r = $img->storeThumbnail($p, PHOTO_RES_PROFILE_48); $p['imgscale'] = 6;
$r = $img->save($p);
if($r === false) if($r === false)
$photo_failure = true; $photo_failure = true;