0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-17 21:00:38 +02:00

fix broken hooks (again)

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2025-08-18 16:13:23 -04:00
parent fcaf2c7223
commit ff76f730cc
No known key found for this signature in database
GPG Key ID: 924A5F6AF051E87C

View File

@ -85,7 +85,7 @@ type HookProcReceiveRefResult struct {
func genGroupSegment(groupID int64) string { func genGroupSegment(groupID int64) string {
var groupSegment string var groupSegment string
if groupID > 0 { if groupID > 0 {
groupSegment = fmt.Sprintf("%d/", groupID) groupSegment = fmt.Sprintf("group/%d/", groupID)
} }
return groupSegment return groupSegment
} }