mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Fix bad merge (#25371)
This commit is contained in:
parent
808c6ec6dc
commit
5e62ba8ccc
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue