fix broken hooks (again)

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧
2026-04-02 20:00:58 -04:00
parent f73a9f1086
commit 6ff9378a20
+1 -1
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
}