aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models
diff options
context:
space:
mode:
authorPatrick Barron <18354464+barronpm@users.noreply.github.com>2021-06-24 06:21:41 -0400
committerGitHub <noreply@github.com>2021-06-24 06:21:41 -0400
commitd3e02e918d5586b0b8c74f1b79a13b76a978defd (patch)
tree2dc878e046d2f5f609c2216705131e9863dc848f /Jellyfin.Api/Models
parentae878fa051e73dd1df90f1fed3ca5f7ad28b7beb (diff)
parent397868be95db2f705522cc975ac076e60decbf0f (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.cs4
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!;
}
}