diff --git a/airtime_mvc/application/models/Playlist.php b/airtime_mvc/application/models/Playlist.php index 44ec4d5da..a08622e4e 100644 --- a/airtime_mvc/application/models/Playlist.php +++ b/airtime_mvc/application/models/Playlist.php @@ -235,6 +235,10 @@ SQL; $formatter = new LengthFormatter($offset_cliplength); $row['offset'] = $formatter->format(); + + $fades = $this->getFadeInfo($row['position']); + $row['fadein'] = $fades[0]; + $row['fadeout'] = $fades[1]; } return $rows;