diff options
author | Rasmus Steinke <rasi@xssn.at> | 2017-09-30 18:50:36 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2017-09-30 18:50:36 +0200 |
commit | ae8e72db1167db889210d64234919c66faf290d2 (patch) | |
tree | c55b1e08bad1c19929f0f31eaa04b1f3d06d55d4 /clerk | |
parent | 2aa016751552e434e656b3c9cbc807438fb0462e (diff) | |
download | perl-app-clerk-ae8e72db1167db889210d64234919c66faf290d2.tar.gz perl-app-clerk-ae8e72db1167db889210d64234919c66faf290d2.tar.xz |
fix condition
Diffstat (limited to 'clerk')
-rwxr-xr-x | clerk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -563,7 +563,7 @@ sub mpd_rate_with_albums { } } push @final_list, [ @list_of_files ]; - if ($rating eq "---\n") { + if ($rating eq "---") { #noop } else { mpd_rate_items(@final_list, $rating, "albumrating"); |