remove unnecessary trimming

This commit is contained in:
Chris Cochrun 2026-02-06 10:06:09 -06:00
parent 5623848362
commit f3d7c2a6d6

View file

@ -273,7 +273,7 @@ impl ServiceTrait for Song {
.map(|lyric| {
lyric
.split("\n\n")
.map(|s| s.trim_end_matches("\n").to_string())
.map(|s| s.to_string())
.collect::<Vec<String>>()
})
.flatten()