Skip to content

Commit

Permalink
Fix for binary interception
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Oct 20, 2023
1 parent 2ba6d18 commit 953bacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/proxy/intercept_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func interceptRequest(request *project.Request, guid string, direction string, r
RequestBody: base64.StdEncoding.EncodeToString(requestData),
Direction: direction,
ResponseReady: make(chan bool),
IsUTF8: utf8.Valid(requestData),
IsUTF8: utf8.Valid(requestResponseData),
HookRun: hookRun,
}

Expand Down

0 comments on commit 953bacc

Please sign in to comment.