Skip to content

Commit

Permalink
Add fullTitle property to LyricsExtractor (#1690)
Browse files Browse the repository at this point in the history
  • Loading branch information
Crocross authored Mar 18, 2023
1 parent de9d211 commit ee275af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/extractor/src/extractors/LyricsExtractor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function search(query: string) {
.then(async (songs) => {
const data = {
title: songs[0].title,
fullTitle: songs[0].fullTitle,
id: songs[0].id,
thumbnail: songs[0].thumbnail,
image: songs[0].image,
Expand All @@ -40,6 +41,7 @@ function search(query: string) {

export interface LyricsData {
title: string;
fullTitle: string;
id: number;
thumbnail: string;
image: string;
Expand Down

0 comments on commit ee275af

Please sign in to comment.