#4: Cast track output formats to correct types

This commit is contained in:
Kelvin Zhang 2015-11-07 17:01:53 +00:00
parent 5583c59ec3
commit 41bcdcaf91

View file

@ -243,7 +243,7 @@ class Track extends Model
'extension' => $trackFile->extension,
'url' => $trackFile->url,
'size' => $trackFile->size,
'isCacheable' => $trackFile->is_cacheable
'isCacheable' => (bool) $trackFile->is_cacheable
];
}