File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ static void read_tags(const OpusTags * tags, Tuple & tuple)
108108 const char * music_brainz_id = opus_tags_query (tags, " musicbrainz_trackid" , 0 );
109109 const char * publisher = opus_tags_query (tags, " publisher" , 0 );
110110 const char * catalog_num = opus_tags_query (tags, " CATALOGNUMBER" , 0 );
111+ const char * lyrics = opus_tags_query (tags, " UNSYNCEDLYRICS" , 0 );
111112 const char * track = opus_tags_query (tags, " TRACKNUMBER" , 0 );
112113 const char * disc = opus_tags_query (tags, " DISCNUMBER" , 0 );
113114 const char * date = opus_tags_query (tags, " DATE" , 0 );
@@ -122,6 +123,7 @@ static void read_tags(const OpusTags * tags, Tuple & tuple)
122123 tuple.set_str (Tuple::MusicBrainzID, music_brainz_id);
123124 tuple.set_str (Tuple::Publisher, publisher);
124125 tuple.set_str (Tuple::CatalogNum, catalog_num);
126+ tuple.set_str (Tuple::Lyrics, lyrics);
125127
126128 if (track)
127129 tuple.set_int (Tuple::Track, std::atoi (track));
You can’t perform that action at this time.
0 commit comments