diff options
| author | Niels van Velzen <git@ndat.nl> | 2023-07-01 11:16:21 +0200 |
|---|---|---|
| committer | Niels van Velzen <git@ndat.nl> | 2023-07-01 11:16:21 +0200 |
| commit | 0ae4d175a184b86ec0267b1bdb89c8c59d40c325 (patch) | |
| tree | e878208178a18520febc903e9814e0c23e2b82d7 /MediaBrowser.Controller/Lyrics | |
| parent | 6be45f73bc60d7b4646d7967d29634eea0b7e422 (diff) | |
Check for empty string in DefaultLyricProvider
Diffstat (limited to 'MediaBrowser.Controller/Lyrics')
| -rw-r--r-- | MediaBrowser.Controller/Lyrics/LyricFile.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Lyrics/LyricFile.cs b/MediaBrowser.Controller/Lyrics/LyricFile.cs index 21096797a..ede89403c 100644 --- a/MediaBrowser.Controller/Lyrics/LyricFile.cs +++ b/MediaBrowser.Controller/Lyrics/LyricFile.cs @@ -9,7 +9,7 @@ public class LyricFile /// Initializes a new instance of the <see cref="LyricFile"/> class. /// </summary> /// <param name="name">The name.</param> - /// <param name="content">The content.</param> + /// <param name="content">The content, must not be empty.</param> public LyricFile(string name, string content) { Name = name; |
