diff options
| author | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-19 17:02:42 -0400 |
|---|---|---|
| committer | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-19 17:02:42 -0400 |
| commit | 838334b322e7d8781c1514bcbf33df85e94b797c (patch) | |
| tree | 0657f16999573791e89261c7eb7a14787e1e15fb | |
| parent | 5d2364f0646ba4f4b6866115ad82fd8fac0733de (diff) | |
Add missing summary to AcceptedTimeFormats
| -rw-r--r-- | MediaBrowser.Providers/Lyric/LrcLyricProvider.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs index b67b8c5d3..0422549ff 100644 --- a/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs +++ b/MediaBrowser.Providers/Lyric/LrcLyricProvider.cs @@ -39,6 +39,10 @@ public class LrcLyricProvider : ILyricProvider /// <inheritdoc /> public IReadOnlyCollection<string> SupportedMediaTypes { get; } = new[] { "lrc", "elrc" }; + /// <summary> + /// Gets the Accepted Time Formats for the metadata numeric values. + /// </summary> + /// <value>The AcceptedTimeFormats.</value> private static string[] AcceptedTimeFormats => new[] { "HH:mm:ss", "H:mm:ss", "mm:ss", "m:ss" }; /// <summary> |
