mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Fix citation error when the file size is larger than 1024 bytes (#27958)
Mentioned in: https://github.com/go-gitea/gitea/pull/27931#issuecomment-1798016960 Same to #25131, so use the same method to fix this problem.
This commit is contained in:
		
					parent
					
						
							
								6447b3e6b2
							
						
					
				
			
			
				commit
				
					
						f48a863b99
					
				
			
		
					 1 changed files with 2 additions and 5 deletions
				
			
		| 
						 | 
					@ -716,14 +716,11 @@ func checkCitationFile(ctx *context.Context, entry *git.TreeEntry) {
 | 
				
			||||||
				return
 | 
									return
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			defer dataRc.Close()
 | 
								defer dataRc.Close()
 | 
				
			||||||
			buf := make([]byte, 1024)
 | 
								ctx.PageData["citationFileContent"], err = blob.GetBlobContent(setting.UI.MaxDisplayFileSize)
 | 
				
			||||||
			n, err := util.ReadAtMost(dataRc, buf)
 | 
					 | 
				
			||||||
			if err != nil {
 | 
								if err != nil {
 | 
				
			||||||
				ctx.ServerError("ReadAtMost", err)
 | 
									ctx.ServerError("GetBlobContent", err)
 | 
				
			||||||
				return
 | 
									return
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
			buf = buf[:n]
 | 
					 | 
				
			||||||
			ctx.PageData["citationFileContent"] = string(buf)
 | 
					 | 
				
			||||||
			break
 | 
								break
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue