mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
#4: Cast track output formats to correct types
This commit is contained in:
parent
5583c59ec3
commit
41bcdcaf91
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ class Track extends Model
|
||||||
'extension' => $trackFile->extension,
|
'extension' => $trackFile->extension,
|
||||||
'url' => $trackFile->url,
|
'url' => $trackFile->url,
|
||||||
'size' => $trackFile->size,
|
'size' => $trackFile->size,
|
||||||
'isCacheable' => $trackFile->is_cacheable
|
'isCacheable' => (bool) $trackFile->is_cacheable
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue