diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2021-06-24 06:21:41 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-24 06:21:41 -0400 |
| commit | d3e02e918d5586b0b8c74f1b79a13b76a978defd (patch) | |
| tree | 2dc878e046d2f5f609c2216705131e9863dc848f /Jellyfin.Api/Models | |
| parent | ae878fa051e73dd1df90f1fed3ca5f7ad28b7beb (diff) | |
| parent | 397868be95db2f705522cc975ac076e60decbf0f (diff) | |
Merge pull request #166 from crobibero/authdb-qc
Fix QuickConnect interation with AuthenticationDb
Diffstat (limited to 'Jellyfin.Api/Models')
| -rw-r--r-- | Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs b/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs index c3a2d5cec..9493c08c2 100644 --- a/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs +++ b/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs @@ -8,9 +8,9 @@ namespace Jellyfin.Api.Models.UserDtos public class QuickConnectDto { /// <summary> - /// Gets or sets the quick connect token. + /// Gets or sets the quick connect secret. /// </summary> [Required] - public string? Token { get; set; } + public string Secret { get; set; } = null!; } } |
