Update MediaBrowser.Providers/Lyric/TxtLyricProvider.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/8381/head
1hitsong 2 years ago committed by GitHub
parent a52d108af6
commit db662eeb33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save