Update MediaBrowser.Providers/Lyric/TxtLyricProvider.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
1hitsong 2022-09-18 12:38:10 -04:00 committed by GitHub
parent db662eeb33
commit 1aa8b22b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace MediaBrowser.Providers.Lyric;
public class TxtLyricProvider : ILyricProvider
{
/// <inheritdoc />
public string Name { get; } = "TxtLyricProvider";
public string Name => "TxtLyricProvider";
/// <inheritdoc />
public IEnumerable<string> SupportedMediaTypes { get; } = new[] { "lrc", "txt" };