Fix bad merge (#25371)

This commit is contained in:
Ben Schumacher 2023-11-08 18:18:33 +01:00 committed by GitHub
parent 808c6ec6dc
commit 5e62ba8ccc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -591,7 +591,7 @@ func (a *App) importUser(rctx request.CTX, data *imports.UserImportData, dryRun
}
}
if password != "" {
if appErr = a.UpdatePassword(c, user, password); appErr != nil {
if appErr = a.UpdatePassword(rctx, user, password); appErr != nil {
return appErr
}
} else {