Skip to content

Commit

Permalink
Fix PM-8134: Change b64 to b64url (#9193)
Browse files Browse the repository at this point in the history
  • Loading branch information
abergs authored Jun 1, 2024
1 parent b457962 commit 0d492b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export class WebauthnLoginAttestationResponseRequest extends WebauthnLoginAuthen
}

this.response = {
attestationObject: Utils.fromBufferToB64(credential.response.attestationObject),
clientDataJson: Utils.fromBufferToB64(credential.response.clientDataJSON),
attestationObject: Utils.fromBufferToUrlB64(credential.response.attestationObject),
clientDataJson: Utils.fromBufferToUrlB64(credential.response.clientDataJSON),
};
}
}

0 comments on commit 0d492b4

Please sign in to comment.