diff options
| author | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-11 15:56:34 -0400 |
|---|---|---|
| committer | 1hitsong <3330318+1hitsong@users.noreply.github.com> | 2022-09-11 15:56:34 -0400 |
| commit | 97f8a63b8934ead26cfc7d41550188d86cada93a (patch) | |
| tree | 4b8206baf0d0aabe4dfaf8fb493acd16cdb1f0d9 | |
| parent | 9d5cf67dfe2d5871d42a55a5e114c5ead1036ff0 (diff) | |
Allow LRC start value to be null
| -rw-r--r-- | Jellyfin.Api/Models/UserDtos/Lyric.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/Lyric.cs b/Jellyfin.Api/Models/UserDtos/Lyric.cs index 2794cd78a..f83fc9839 100644 --- a/Jellyfin.Api/Models/UserDtos/Lyric.cs +++ b/Jellyfin.Api/Models/UserDtos/Lyric.cs @@ -8,7 +8,7 @@ namespace Jellyfin.Api.Models.UserDtos /// <summary> /// Gets or sets the start time (ticks). /// </summary> - public double Start { get; set; } + public double? Start { get; set; } /// <summary> /// Gets or sets the text. |
