aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2021-06-23 21:07:08 -0600
committercrobibero <cody@robibe.ro>2021-06-23 21:07:08 -0600
commit397868be95db2f705522cc975ac076e60decbf0f (patch)
tree2dc878e046d2f5f609c2216705131e9863dc848f /Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs
parentae878fa051e73dd1df90f1fed3ca5f7ad28b7beb (diff)
Fix issues with QuickConnect and AuthenticationDb
Diffstat (limited to 'Jellyfin.Api/Models/UserDtos/QuickConnectDto.cs')
-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!;
}
}