From df85b2fe651ce060cf3b7c4a20c5254c9c80f3aa Mon Sep 17 00:00:00 2001 From: 1hitsong <3330318+1hitsong@users.noreply.github.com> Date: Mon, 19 Sep 2022 17:46:29 -0400 Subject: [PATCH] Update MediaBrowser.Providers/Lyric/LrcLyricProvider.cs Co-authored-by: Claus Vium --- MediaBrowser.Providers/Lyric/LrcLyricProvider.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs index 0422549ff4..debf982cba 100644 --- a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs +++ b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs @@ -39,11 +39,7 @@ public class LrcLyricProvider : ILyricProvider /// public IReadOnlyCollection SupportedMediaTypes { get; } = new[] { "lrc", "elrc" }; - /// - /// Gets the Accepted Time Formats for the metadata numeric values. - /// - /// The AcceptedTimeFormats. - private static string[] AcceptedTimeFormats => new[] { "HH:mm:ss", "H:mm:ss", "mm:ss", "m:ss" }; + private static readonly IReadOnlyList _acceptedTimeFormats = new string[] { "HH:mm:ss", "H:mm:ss", "mm:ss", "m:ss" }; /// /// Opens lyric file for the requested item, and processes it for API return.