fix: add string as return for getCover and make sure to not pass false to fseek

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2023-05-28 16:33:05 +02:00
parent cbbd6b306b
commit c75f4e0a39
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614

View File

@ -233,7 +233,7 @@ class Mp3Info {
/**
* @return bool|null
* @return bool|null|string
*/
public function getCover()
{
@ -242,6 +242,9 @@ class Mp3Info {
}
$fp = fopen($this->_fileName, 'rb');
if ($fp === false) {
return false;
}
fseek($fp, $this->coverProperties['offset']);
$data = fread($fp, $this->coverProperties['size']);
fclose($fp);