Fix bug
This commit is contained in:
		
							parent
							
								
									28d953933a
								
							
						
					
					
						commit
						f3ab8199a5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -36,8 +36,8 @@ async function save(path: string, name: string, type: string, hash: string, size
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (config.drive && config.drive.storage == 'minio') {
 | 
						if (config.drive && config.drive.storage == 'minio') {
 | 
				
			||||||
		const minio = new Minio.Client(config.drive.config);
 | 
							const minio = new Minio.Client(config.drive.config);
 | 
				
			||||||
		const key = `${config.drive.prefix}/${uuid.v4()}/${name}`;
 | 
							const key = `${config.drive.prefix}/${uuid.v4()}/${encodeURIComponent(name)}`;
 | 
				
			||||||
		const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}/${name}.thumbnail.jpg`;
 | 
							const thumbnailKey = `${config.drive.prefix}/${uuid.v4()}/${encodeURIComponent(name)}.thumbnail.jpg`;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		const baseUrl = config.drive.baseUrl
 | 
							const baseUrl = config.drive.baseUrl
 | 
				
			||||||
			|| `${ config.drive.config.useSSL ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? `:${config.drive.config.port}` : '' }/${ config.drive.bucket }`;
 | 
								|| `${ config.drive.config.useSSL ? 'https' : 'http' }://${ config.drive.config.endPoint }${ config.drive.config.port ? `:${config.drive.config.port}` : '' }/${ config.drive.bucket }`;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue