Update MediaBrowser.Providers/Lyric/LrcLyricProvider.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
1hitsong 2022-09-18 12:39:38 -04:00 committed by GitHub
parent c85cbcced6
commit 10b07ed9a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,13 +19,7 @@ public class LrcLyricProvider : ILyricProvider
public string Name => "LrcLyricProvider";
/// <inheritdoc />
public IEnumerable<string> SupportedMediaTypes
{
get => new Collection<string>
{
"lrc"
};
}
public IEnumerable<string> SupportedMediaTypes { get; } = new[] { "lrc" };
/// <summary>
/// Opens lyric file for the requested item, and processes it for API return.