From 6d9321319b75bcf5eb21159ceae8f35912ae3ab5 Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Sun, 5 Apr 2026 21:02:48 +0200 Subject: [PATCH] rating: fix evaluation --- lib/tags/getInfos::FLAC | 2 +- lib/tags/getInfos::ffmpeg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tags/getInfos::FLAC b/lib/tags/getInfos::FLAC index 4c90454..c6c64a2 100644 --- a/lib/tags/getInfos::FLAC +++ b/lib/tags/getInfos::FLAC @@ -35,7 +35,7 @@ getInfos::FLAC() { disc=$(gettag discnumber) genre=$(gettag genre) performer=$(gettag performer) - rating=$((gettag fmps_rating)) + rating=$(gettag fmps_rating) releasecountry=$(gettag releasecountry) replaygain_alb=$(gettag replaygain_album_gain) replaygain_trk=$(gettag replaygain_track_gain) diff --git a/lib/tags/getInfos::ffmpeg b/lib/tags/getInfos::ffmpeg index 4813c1b..080d922 100644 --- a/lib/tags/getInfos::ffmpeg +++ b/lib/tags/getInfos::ffmpeg @@ -41,7 +41,7 @@ getInfos::ffmpeg() { disc=$(gettag TAG:disc) genre=$(gettag TAG:genre) performer=$(gettag TAG:TOPE) - rating=$((gettag fmps_rationg)) + rating=$(gettag fmps_rating) releasecountry=$(gettag TAG:releasecountry) [[ -z "$releasecountry" ]] \ && releasecountry=$(gettag "TAG:MusicBrainz Album Release Country")