#108070 Ротатор. Сильно пережимаются изображения при загрузке их через обзор - подебажить/отрефакторить

This commit is contained in:
Александр Рыбкин 2025-01-31 15:08:01 +03:00
parent ff4c7d51dd
commit fd5c48a47e
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ class File extends \yii\db\ActiveRecord
$this->ext = $this->file->extension;
$this->md5 = md5_file($this->file->tempName);
$patch = $this->getDir(true);
if ($this->isImage)
if ($this->isImage && $this->ext != 'jpg') //не конвертируем изображение в jpg если оно уже jpg
{
$this->ext = $this->convertJpg ? 'jpg' : $this->ext;
$this->name = $this->getFileName();