Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nexus/src/app/login.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl super::Nexus {
let (authenticated_subject, relay_state_string) =
match identity_provider {
IdentityProviderType::Saml(saml_identity_provider) => {
let body_bytes = dbg!(body_bytes.as_str())?;
let body_bytes = body_bytes.as_str()?;
saml_identity_provider.authenticated_subject(
&body_bytes,
self.samael_max_issue_delay(),
Expand Down
Loading