Skip to content

Commit

Permalink
Merge pull request #908 from AF-1/public/8.4
Browse files Browse the repository at this point in the history
Update Queries.pm (songinfo remote tag returns 1 or 0)
  • Loading branch information
mherger committed Sep 20, 2023
2 parents 80ad3e9 + b2aee44 commit 9f1fa06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Slim/Control/Queries.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5096,7 +5096,7 @@ sub _songData {
}

# correct values
if (($tag eq 'R' || $tag eq 'x') && $value == 0) {
if ($tag eq 'R' && $value == 0) {
$value = undef;
}
# we might need to proxy the image request to resize it
Expand Down

0 comments on commit 9f1fa06

Please sign in to comment.