summaryrefslogtreecommitdiffstats
path: root/stream.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-02-28 18:50:57 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-02-28 18:50:57 +0000
commit4fcacae75ef9cdd0d921fee3232627f1ac7b57a6 (patch)
treeb96d25093ede2acd0ff3b927171778d6623a0617 /stream.php
parentdbdd96ed1b3b00a850be001f3dbeea3273739a98 (diff)
downloadampache-4fcacae75ef9cdd0d921fee3232627f1ac7b57a6.tar.gz
ampache-4fcacae75ef9cdd0d921fee3232627f1ac7b57a6.tar.bz2
ampache-4fcacae75ef9cdd0d921fee3232627f1ac7b57a6.zip
make the httpq and mpd controlers understand live stream urls
Diffstat (limited to 'stream.php')
-rw-r--r--stream.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/stream.php b/stream.php
index ce7437de..1c3da0de 100644
--- a/stream.php
+++ b/stream.php
@@ -75,10 +75,6 @@ switch ($_REQUEST['action']) {
case 'popular_songs':
$media_ids = get_popular_songs($_REQUEST['limit'], 'global');
break;
- case 'genre':
- $genre = new Genre($_REQUEST['genre']);
- $media_ids = $genre->get_songs();
- break;
case 'artist':
$artist = new Artist($_REQUEST['artist_id']);
$media_ids = $artist->get_songs();