Skip to content

Commit

Permalink
[bugfix] Forward port from - #24 - Add missing XDM base64 type cast f…
Browse files Browse the repository at this point in the history
…or compatibility with eXist-db 6.x.x

Closes #23
  • Loading branch information
adamretter committed Aug 25, 2023
1 parent 19f5d29 commit b88e6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/xar-resources-filtered/modules/exsaml.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ declare function exsaml:build-authnreq-redir-url($relaystate as xs:string) {
let $zip := compression:deflate($bin, true())
(: let $log := exsaml:log("debug", "build-authnreq-redir-url; zip: " || $zip):)
(: urlencode base64 request data :)
let $urlenc := xmldb:encode($zip)
let $urlenc := xmldb:encode($zip cast as xs:string)

let $log := exsaml:log("debug", "build-authnreq-redir-url; urlenc: " || $urlenc)

Expand Down

0 comments on commit b88e6aa

Please sign in to comment.