Skip to content

Commit

Permalink
Merge pull request #538 from jdreesen/patch-1
Browse files Browse the repository at this point in the history
Fix authorization header name
  • Loading branch information
dbu committed Nov 2, 2022
2 parents 42f4783 + 6e9e6ba commit 6b4b8f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/config/varnish-3/fos_user_context.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sub fos_user_context_recv {
sub fos_user_context_hash {
if (req.http.accept == "application/vnd.fos.user-context-hash") {
hash_data(req.http.Cookie);
hash_data(req.http.Autorization);
hash_data(req.http.Authorization);
}
}

Expand Down
2 changes: 1 addition & 1 deletion resources/config/varnish/fos_user_context.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ sub fos_user_context_recv {
sub fos_user_context_hash {
if (req.http.accept == "application/vnd.fos.user-context-hash") {
hash_data(req.http.Cookie);
hash_data(req.http.Autorization);
hash_data(req.http.Authorization);
}
}

Expand Down

0 comments on commit 6b4b8f2

Please sign in to comment.