Skip to content

Commit

Permalink
b/f: don't return false value in scrobblers dataFn
Browse files Browse the repository at this point in the history
this should fix scrobbler authentication in the web frontend
  • Loading branch information
apexo committed Apr 22, 2014
1 parent 7258b91 commit 60b9fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ Settings.prototype.categories = {
var lastStatic = target.appendChild(document.createTextNode(": "));

this.bind("scrobblers",
function() { return this.scrobblers[item]; },
function() { return this.scrobblers[item] || {}; },
function(data) { return data && (data.auth_token + "\0" + data.session_token); },
function(data) {
var node = lastStatic;
Expand Down

0 comments on commit 60b9fbe

Please sign in to comment.