1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-12 21:06:13 +02:00

IsUserAllowedToUpdate ignore igonre if user is nil (#14885)

This commit is contained in:
6543 2021-03-04 19:27:54 +01:00 committed by GitHub
parent 8ac1367718
commit 11229ca539
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,9 @@ func Update(pull *models.PullRequest, doer *models.User, message string) error {
// IsUserAllowedToUpdate check if user is allowed to update PR with given permissions and branch protections
func IsUserAllowedToUpdate(pull *models.PullRequest, user *models.User) (bool, error) {
if user == nil {
return false, nil
}
headRepoPerm, err := models.GetUserRepoPermission(pull.HeadRepo, user)
if err != nil {
return false, err