remove unnecessary trimming
This commit is contained in:
parent
5623848362
commit
f3d7c2a6d6
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue