Skip to content

Commit

Permalink
bug: correctly terminate session cookie header
Browse files Browse the repository at this point in the history
  • Loading branch information
cgsdev0 authored Nov 8, 2023
1 parent 1b2ad2b commit 1572294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ respond() {
printf "HTTP/1.1 %s %s\r\n" "$CODE" "$*"
header Server "bash-stack ${VERSION:-devbuild}"
[[ ! -z "$SESSION_HEADER_TO_BE_WRITTEN" ]] && \
printf "%s" "$SESSION_HEADER_TO_BE_WRITTEN"
printf "%s\n" "$SESSION_HEADER_TO_BE_WRITTEN"

}

Expand Down

0 comments on commit 1572294

Please sign in to comment.