1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-07 13:34:20 -04:00

Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519) (#4525)

This commit is contained in:
SagePtr 2018-07-27 21:11:24 +02:00 committed by Lauris BH
parent 5927599e43
commit c1224124ea

View File

@ -74,7 +74,7 @@ func (protectBranch *ProtectedBranch) CanUserMerge(userID int64) bool {
return true
}
if len(protectBranch.WhitelistTeamIDs) == 0 {
if len(protectBranch.MergeWhitelistTeamIDs) == 0 {
return false
}