diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-14 06:51:38 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-14 06:51:38 +0000 |
commit | df2f009920f2ed128eea364870f4df94d9b89486 (patch) | |
tree | 73bb6560cb3db510f64141a0f826a51db420224b /lib/class/scrobbler.class.php | |
parent | 6983cb8e0cdb661053c9f6336518f2549cfb13a5 (diff) | |
download | ampache-df2f009920f2ed128eea364870f4df94d9b89486.tar.gz ampache-df2f009920f2ed128eea364870f4df94d9b89486.tar.bz2 ampache-df2f009920f2ed128eea364870f4df94d9b89486.zip |
fixed lastfm for reals this time, I think also fixed not being able to re-enable users
Diffstat (limited to 'lib/class/scrobbler.class.php')
-rw-r--r-- | lib/class/scrobbler.class.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/class/scrobbler.class.php b/lib/class/scrobbler.class.php index ad379940..26aad0f1 100644 --- a/lib/class/scrobbler.class.php +++ b/lib/class/scrobbler.class.php @@ -42,10 +42,6 @@ class scrobbler { $this->challenge = ''; $this->queued_tracks = array(); - $this->submit_host = $_SESSION['state']['lastfm']['submit_host']; - $this->submit_port = $_SESSION['state']['lastfm']['submit_port']; - $this->submit_url = $_SESSION['state']['lastfm']['submit_url']; - } // scrobbler /** @@ -120,7 +116,7 @@ class scrobbler { return false; } - $this->challenge = $response[1]; + $data['challenge'] = $response[1]; return $data; } // handshake |