0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-06 14:58:32 +02:00

fix broken hooks (again)

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2025-08-18 16:13:23 -04:00
parent f73a9f1086
commit 6ff9378a20
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 {
var groupSegment string
if groupID > 0 {
groupSegment = fmt.Sprintf("%d/", groupID)
groupSegment = fmt.Sprintf("group/%d/", groupID)
}
return groupSegment
}