[READ-ONLY] Mirror of https://github.com/probablykasper/mr-tagger. Music file tagging app for Mac, Linux and Windows
audio linux macos music tagger tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix BPM not showing

Kasper (Dec 14, 2021, 5:11 PM +0100) daaece55 fb80ce7d

+4 -1
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.1.6 - 2021 Dec 14 4 + - Fix BPM not showing 5 + 3 6 ## 0.1.5 - 2021 Dec 14 4 7 - Fix incorrect disc total being shown 5 8
+1 -1
src-tauri/src/cmd.rs
··· 153 153 }; 154 154 155 155 let bpm = match file.metadata { 156 - Metadata::Id3(ref tag) => get_frame_text(&tag, "TBMP").unwrap_or("").to_string(), 156 + Metadata::Id3(ref tag) => get_frame_text(&tag, "TBPM").unwrap_or("").to_string(), 157 157 Metadata::Mp4(ref tag) => opt_to_str(tag.bpm()), 158 158 }; 159 159