fix: Change OGG UFID tag from SPOTIFY.COM_TRACKID to SPOTIFY_TRACKID (#91)

Co-authored-by: 0xnf <0xnf@winetech.com>
This commit is contained in:
0xNF 2024-07-13 22:07:30 +09:00 committed by GitHub
parent cc7a03b774
commit d45267b4d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -91,6 +91,6 @@ impl super::Tag for OggTag {
}
fn add_unique_file_identifier(&mut self, track_id: &str) {
self.tag.add_tag_single("SPOTIFY.COM_TRACKID", track_id);
self.tag.add_tag_single("SPOTIFY_TRACKID", track_id);
}
}