Skip to content

Commit

Permalink
remove duplicated operation
Browse files Browse the repository at this point in the history
  • Loading branch information
kpacha committed Jun 27, 2023
1 parent 410b86d commit 7923ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func New(cfg lua.Config, next proxy.Proxy) proxy.Proxy {
registerResponseTable(resp, b)

if err = lua.ToError(b.DoString(cfg.PostCode)); err != nil {
return nil, lua.ToError(err)
return nil, err
}

return resp, nil
Expand Down

0 comments on commit 7923ad1

Please sign in to comment.