fix submodule is nil panic (#23588)
#23587 submodule path is nil It is panic a nil error --------- Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
This commit is contained in:
		
							parent
							
								
									a8c30a45fa
								
							
						
					
					
						commit
						f83246edb2
					
				| 
						 | 
				
			
			@ -214,8 +214,10 @@ func GetContents(ctx context.Context, repo *repo_model.Repository, treePath, ref
 | 
			
		|||
		if err != nil {
 | 
			
		||||
			return nil, err
 | 
			
		||||
		}
 | 
			
		||||
		if submodule != nil && submodule.URL != "" {
 | 
			
		||||
			contentsResponse.SubmoduleGitURL = &submodule.URL
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	// Handle links
 | 
			
		||||
	if entry.IsRegular() || entry.IsLink() {
 | 
			
		||||
		downloadURL, err := url.Parse(repo.HTMLURL() + "/raw/" + url.PathEscape(string(refType)) + "/" + util.PathEscapeSegments(ref) + "/" + util.PathEscapeSegments(treePath))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue