mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Fix repo indexer and submodule bug (#3107)
This commit is contained in:
		@@ -100,10 +100,6 @@ func populateRepoIndexer() error {
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type updateBatch struct {
 | 
			
		||||
	updates []indexer.RepoIndexerUpdate
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func updateRepoIndexer(repo *Repository) error {
 | 
			
		||||
	changes, err := getRepoChanges(repo)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
@@ -163,6 +159,10 @@ func addUpdate(filename string, repo *Repository, batch *indexer.Batch) error {
 | 
			
		||||
		return err
 | 
			
		||||
	} else if stat.Size() > setting.Indexer.MaxIndexerFileSize {
 | 
			
		||||
		return nil
 | 
			
		||||
	} else if stat.IsDir() {
 | 
			
		||||
		// file could actually be a directory, if it is the root of a submodule.
 | 
			
		||||
		// We do not index submodule contents, so don't do anything.
 | 
			
		||||
		return nil
 | 
			
		||||
	}
 | 
			
		||||
	fileContents, err := ioutil.ReadFile(filepath)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user