mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 11:35:03 +01:00 
			
		
		
		
	Fix Slack webhook fork message (#7774)
The order of forkee and fork was mixed up.
This commit is contained in:
		
							parent
							
								
									0470b16e8a
								
							
						
					
					
						commit
						28c5ae27d6
					
				| @ -120,8 +120,8 @@ func getSlackDeletePayload(p *api.DeletePayload, slack *SlackMeta) (*SlackPayloa | ||||
| 
 | ||||
| // getSlackForkPayload composes Slack payload for forked by a repository. | ||||
| func getSlackForkPayload(p *api.ForkPayload, slack *SlackMeta) (*SlackPayload, error) { | ||||
| 	baseLink := SlackLinkFormatter(p.Repo.HTMLURL, p.Repo.Name) | ||||
| 	forkLink := SlackLinkFormatter(p.Forkee.HTMLURL, p.Forkee.FullName) | ||||
| 	baseLink := SlackLinkFormatter(p.Forkee.HTMLURL, p.Forkee.FullName) | ||||
| 	forkLink := SlackLinkFormatter(p.Repo.HTMLURL, p.Repo.FullName) | ||||
| 	text := fmt.Sprintf("%s is forked to %s", baseLink, forkLink) | ||||
| 	return &SlackPayload{ | ||||
| 		Channel:  slack.Channel, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user