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 @@ -111,6 +111,7 @@ static void read_tags(const OpusTags * tags, Tuple & tuple)
111111 const char * track = opus_tags_query (tags, " TRACKNUMBER" , 0 );
112112 const char * disc = opus_tags_query (tags, " DISCNUMBER" , 0 );
113113 const char * date = opus_tags_query (tags, " DATE" , 0 );
114+ const char * lyrics = opus_tags_query (tags, " UNSYNCEDLYRICS" , 0 );
114115
115116 tuple.set_str (Tuple::Title, title);
116117 tuple.set_str (Tuple::Artist, artist);
@@ -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