Skip to content

Commit

Permalink
fix: handle CLA URL correctly from UI
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Horton <[email protected]>
  • Loading branch information
madpah committed Aug 30, 2024
1 parent f6632f7 commit a2fd65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ func handleProcessSignCla(c echo.Context) (err error) {
}

user.TimeSigned = time.Now()
user.CLAText, err = getClaText(os.Getenv(user.CLATextUrl))
user.CLAText, err = getClaText(user.CLATextUrl)

if err != nil {
logger.Error("Failed to get CLA Text - not blocking signature registration", zap.Error(err))
Expand Down

0 comments on commit a2fd65d

Please sign in to comment.