summaryrefslogtreecommitdiffstats
path: root/play/index.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-29 04:58:22 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-29 04:58:22 +0000
commit258e4fcdf22745ce2b119df63458790461a6fbf0 (patch)
tree779f2a232d11bd2cbd4efca72f450e1af2640320 /play/index.php
parentdb47bcb6c018fecae71b8b7120c70d7ef9c7bcf6 (diff)
downloadampache-258e4fcdf22745ce2b119df63458790461a6fbf0.tar.gz
ampache-258e4fcdf22745ce2b119df63458790461a6fbf0.tar.bz2
ampache-258e4fcdf22745ce2b119df63458790461a6fbf0.zip
fixed downsampling, renamed to transcoding default or always are now the options
Diffstat (limited to 'play/index.php')
-rw-r--r--play/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/play/index.php b/play/index.php
index a02defcb..438db254 100644
--- a/play/index.php
+++ b/play/index.php
@@ -248,7 +248,7 @@ if (Config::get('access_control') AND Config::get('downsample_remote')) {
} // if access_control
// If they are downsampling, or if the song is not a native stream or it's non-local
-if ($GLOBALS['user']->prefs['play_type'] == 'downsample' || !$song->native_stream() || $not_local) {
+if ($GLOBALS['user']->prefs['transcode'] == 'always' || !$song->native_stream() || $not_local) {
debug_event('downsample','Starting Downsample...','5');
$results = start_downsample($song,$lastid,$song_name);
$fp = $results['handle'];