Skip to content

Commit

Permalink
fix(HyperRequest): Fix infinite serialization loop with referrer
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Jun 14, 2023
1 parent c102c15 commit 8ba6501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/HyperRequest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ component accessors="true" {
"files" : getFiles(),
"bodyFormat" : getBodyFormat(),
"body" : getBody(),
"referrer" : isNull( variables.referrer ) ? "" : variables.referrer,
"referrerId" : isNull( variables.referrer ) ? "" : variables.referrer.getResponseID(),
"throwOnError" : getThrowOnError(),
"timeout" : getTimeout(),
"maximumRedirects" : getMaximumRedirects(),
Expand Down

0 comments on commit 8ba6501

Please sign in to comment.