diff options
| author | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-18 12:39:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-18 12:39:38 -0400 |
| commit | 10b07ed9a582a06d947f6fb7ec2ab9fd94215587 (patch) | |
| tree | 43874c912c32954a37cf18daff28e01e185136c1 | |
| parent | c85cbcced691faab5ce0c8864e23bfa2f5f2d696 (diff) | |
Update MediaBrowser.Providers/Lyric/LrcLyricProvider.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
| -rw-r--r-- | MediaBrowser.Providers/Lyric/LrcLyricProvider.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs index 311a8e21d..90396e553 100644 --- a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs +++ b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs @@ -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. |
