mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-30 22:11:07 +00:00 
			
		
		
		
	Use correct function name (#31887)
(cherry picked from commit 0299bb97f038685aee794a992fa4a9f5cf83652e)
This commit is contained in:
		
					parent
					
						
							
								41281fc80a
							
						
					
				
			
			
				commit
				
					
						bd9edb6fed
					
				
			
		
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -45,7 +45,7 @@ func (p *PullRequest) GetContext() DownloaderContext { return p.Context } | |||
| 
 | ||||
| // IsForkPullRequest returns true if the pull request from a forked repository but not the same repository | ||||
| func (p *PullRequest) IsForkPullRequest() bool { | ||||
| 	return p.Head.RepoPath() != p.Base.RepoPath() | ||||
| 	return p.Head.RepoFullName() != p.Base.RepoFullName() | ||||
| } | ||||
| 
 | ||||
| // GetGitRefName returns pull request relative path to head | ||||
|  | @ -62,8 +62,8 @@ type PullRequestBranch struct { | |||
| 	OwnerName string `yaml:"owner_name"` | ||||
| } | ||||
| 
 | ||||
| // RepoPath returns pull request repo path | ||||
| func (p PullRequestBranch) RepoPath() string { | ||||
| // RepoFullName returns pull request repo full name | ||||
| func (p PullRequestBranch) RepoFullName() string { | ||||
| 	return fmt.Sprintf("%s/%s", p.OwnerName, p.RepoName) | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue