diff options
| author | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-18 12:38:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-18 12:38:10 -0400 |
| commit | 1aa8b22b89ec320ff0b4215cc35e1bca60e782ba (patch) | |
| tree | f43a71ebb4ea6e5f19faff3229bc34e8127f912c /MediaBrowser.Providers/Lyric | |
| parent | db662eeb333ea4e5c7764c4738e8e88a5efc0e8c (diff) | |
Update MediaBrowser.Providers/Lyric/TxtLyricProvider.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'MediaBrowser.Providers/Lyric')
| -rw-r--r-- | MediaBrowser.Providers/Lyric/TxtLyricProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Lyric/TxtLyricProvider.cs b/MediaBrowser.Providers/Lyric/TxtLyricProvider.cs index e48bc6963..a2161c427 100644 --- a/MediaBrowser.Providers/Lyric/TxtLyricProvider.cs +++ b/MediaBrowser.Providers/Lyric/TxtLyricProvider.cs @@ -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" }; |
