1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-03 09:07:19 +00:00

Fix ghost user in feeds when pushing in an actions, it should be gitea-actions (#34703)

This commit is contained in:
Lunny Xiao
2025-06-18 07:44:35 +08:00
committed by GitHub
parent ee334886f3
commit a14db5c5e3
4 changed files with 14 additions and 28 deletions

View File

@ -191,7 +191,7 @@ func (a *Action) LoadActUser(ctx context.Context) {
return
}
var err error
a.ActUser, err = user_model.GetUserByID(ctx, a.ActUserID)
a.ActUser, err = user_model.GetPossibleUserByID(ctx, a.ActUserID)
if err == nil {
return
} else if user_model.IsErrUserNotExist(err) {