aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Lyrics/ILyricProvider.cs
diff options
context:
space:
mode:
author1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-16 20:52:40 -0400
committer1hitsong <3330318+1hitsong@users.noreply.github.com>2022-09-16 20:52:40 -0400
commitf740d1b9f00d91bfad970f56abed67d8c8c16c9c (patch)
tree1e82a195e7e3f74406765dfb64b6d6c30e843d2a /MediaBrowser.Controller/Lyrics/ILyricProvider.cs
parentf4fd908f8d7ffcdea6acaf75928f6c2960ed6338 (diff)
Remove use of AddParts. Cleanup use of Lyric vs Lyrics.
Diffstat (limited to 'MediaBrowser.Controller/Lyrics/ILyricProvider.cs')
-rw-r--r--MediaBrowser.Controller/Lyrics/ILyricProvider.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs
index 691fed1fd..5e677ab26 100644
--- a/MediaBrowser.Controller/Lyrics/ILyricProvider.cs
+++ b/MediaBrowser.Controller/Lyrics/ILyricProvider.cs
@@ -22,8 +22,8 @@ namespace MediaBrowser.Controller.Lyrics
/// <summary>
/// Gets the lyrics.
/// </summary>
- /// <param name="item">The item to to process.</param>
- /// <returns>Task{LyricResponse}.</returns>
+ /// <param name="item">The media item.</param>
+ /// <returns>If found, returns lyrics for passed item; otherwise, null.</returns>
LyricResponse? GetLyrics(BaseItem item);
}
}