mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	Refactor
This commit is contained in:
		
							parent
							
								
									805bc4b254
								
							
						
					
					
						commit
						dcd851cb68
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -19,7 +19,7 @@ export default async (url, user, folderId = null, uri = null): Promise<IDriveFil | ||||||
| 	log(`name: ${name}`); | 	log(`name: ${name}`); | ||||||
| 
 | 
 | ||||||
| 	// Create temp file
 | 	// Create temp file
 | ||||||
| 	const path = await new Promise((res: (string) => void, rej) => { | 	const path = await new Promise<string>((res, rej) => { | ||||||
| 		tmp.file((e, path) => { | 		tmp.file((e, path) => { | ||||||
| 			if (e) return rej(e); | 			if (e) return rej(e); | ||||||
| 			res(path); | 			res(path); | ||||||
|  | @ -44,8 +44,8 @@ export default async (url, user, folderId = null, uri = null): Promise<IDriveFil | ||||||
| 	log(`created: ${driveFile._id}`); | 	log(`created: ${driveFile._id}`); | ||||||
| 
 | 
 | ||||||
| 	// clean-up
 | 	// clean-up
 | ||||||
| 	fs.unlink(path, (e) => { | 	fs.unlink(path, e => { | ||||||
| 		if (e) log(e.stack); | 		if (e) console.error(e); | ||||||
| 	}); | 	}); | ||||||
| 
 | 
 | ||||||
| 	return driveFile; | 	return driveFile; | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue