fix: update contractions

This commit is contained in:
talwat 2024-10-05 23:59:45 +02:00
parent f79390b574
commit d1a56403c2

View File

@ -65,8 +65,11 @@ impl TrackInfo {
.replace(" T ", "'t ") .replace(" T ", "'t ")
.replace(" D ", "'d ") .replace(" D ", "'d ")
.replace(" Ve ", "'ve ") .replace(" Ve ", "'ve ")
.replace(" Ll ", "'ll ")
.replace(" Re ", "'re ")
.replace(" M ", "'m "); .replace(" M ", "'m ");
// This is incremented for each digit in front of the song name.
let mut skip = 0; let mut skip = 0;
// SAFETY: All of the track names originate with the `'static` lifetime, // SAFETY: All of the track names originate with the `'static` lifetime,