From cb3484865ef23c26201ebbfced8ca9129efd1ffd Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Thu, 11 Apr 2013 18:19:54 -0400 Subject: Fix song downloads 'download' wasn't in the list of allowed types for Stream_Playlist, so download attempts were processed as M3U playlists. --- lib/class/stream_playlist.class.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/class') diff --git a/lib/class/stream_playlist.class.php b/lib/class/stream_playlist.class.php index 3046b7a1..653686e4 100644 --- a/lib/class/stream_playlist.class.php +++ b/lib/class/stream_playlist.class.php @@ -156,6 +156,7 @@ class Stream_Playlist { $ext = $type; switch($type) { + case 'download': case 'democratic': case 'localplay': case 'html5_player': -- cgit