Disable dropzone's timeout (#12024)
Dropzone 4.4 introduced a 30s XHR timeout that will kill any upload still in progress. This disable that timeout again. Ref: https://www.dropzonejs.com/#config-timeout Ref: https://github.com/go-gitea/gitea/pull/10645 Ref: https://xhr.spec.whatwg.org/#the-timeout-attribute Fixes: https://github.com/go-gitea/gitea/issues/12022 Fixes: https://github.com/go-gitea/gitea/issues/11906 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		
							parent
							
								
									d9aa007a9e
								
							
						
					
					
						commit
						ec0743bab8
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		|  | @ -899,6 +899,7 @@ async function initRepository() { | |||
|             dictInvalidFileType: $dropzone.data('invalid-input-type'), | ||||
|             dictFileTooBig: $dropzone.data('file-too-big'), | ||||
|             dictRemoveFile: $dropzone.data('remove-file'), | ||||
|             timeout: 0, | ||||
|             init() { | ||||
|               this.on('success', (file, data) => { | ||||
|                 filenameDict[file.name] = { | ||||
|  | @ -2304,6 +2305,7 @@ $(document).ready(async () => { | |||
|       dictInvalidFileType: $dropzone.data('invalid-input-type'), | ||||
|       dictFileTooBig: $dropzone.data('file-too-big'), | ||||
|       dictRemoveFile: $dropzone.data('remove-file'), | ||||
|       timeout: 0, | ||||
|       init() { | ||||
|         this.on('success', (file, data) => { | ||||
|           filenameDict[file.name] = data.uuid; | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue