Фикс ленивой подгрузки логотипов
This commit is contained in:
@@ -78,7 +78,7 @@ class PlaylistController extends Controller
|
||||
}
|
||||
|
||||
$logo->store();
|
||||
$body = $logo->asBase64();
|
||||
$body = $logo->raw();
|
||||
$size = $logo->size();
|
||||
$mime = $logo->mimeType();
|
||||
|
||||
|
||||
@@ -125,8 +125,17 @@ class ChannelLogo implements \Stringable
|
||||
return null;
|
||||
}
|
||||
|
||||
$mime = $this->mimeType();
|
||||
return "data:$mime;base64," . base64_encode($this->rawData);
|
||||
return "data:$this->mimeType;base64," . base64_encode($this->rawData);
|
||||
}
|
||||
|
||||
/**
|
||||
* Возвращает сырое изображение
|
||||
*
|
||||
* @return false|string|null
|
||||
*/
|
||||
public function raw(): false|string|null
|
||||
{
|
||||
return $this->rawData;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user