mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	fix attachment file size limit in server backend (#35519)
fix #35512 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -16,9 +16,13 @@ var Attachment AttachmentSettingType | ||||
| func loadAttachmentFrom(rootCfg ConfigProvider) (err error) { | ||||
| 	Attachment = AttachmentSettingType{ | ||||
| 		AllowedTypes: ".avif,.cpuprofile,.csv,.dmp,.docx,.fodg,.fodp,.fods,.fodt,.gif,.gz,.jpeg,.jpg,.json,.jsonc,.log,.md,.mov,.mp4,.odf,.odg,.odp,.ods,.odt,.patch,.pdf,.png,.pptx,.svg,.tgz,.txt,.webm,.webp,.xls,.xlsx,.zip", | ||||
| 		MaxSize:      2048, | ||||
| 		MaxFiles:     5, | ||||
| 		Enabled:      true, | ||||
|  | ||||
| 		// FIXME: this size is used for both "issue attachment" and "release attachment" | ||||
| 		// The design is not right, these two should be different settings | ||||
| 		MaxSize: 2048, | ||||
|  | ||||
| 		MaxFiles: 5, | ||||
| 		Enabled:  true, | ||||
| 	} | ||||
| 	sec, _ := rootCfg.GetSection("attachment") | ||||
| 	if sec == nil { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user