* Resolve #5688 * あああああ * 😇 * :thinking_face: * Update detect-mine.ts Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
		
							parent
							
								
									90cfd87f46
								
							
						
					
					
						commit
						8aafafe416
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -1,15 +1,15 @@ | |||
| import * as fs from 'fs'; | ||||
| import fileType = require('file-type'); | ||||
| import checkSvg from '../misc/check-svg'; | ||||
| const FileType = require('file-type'); | ||||
| 
 | ||||
| export async function detectMine(path: string) { | ||||
| 	return new Promise<[string, string | null]>((res, rej) => { | ||||
| 		const readable = fs.createReadStream(path); | ||||
| 		readable | ||||
| 			.on('error', rej) | ||||
| 			.once('data', (buffer: Buffer) => { | ||||
| 			.once('data', async (buffer: Buffer) => { | ||||
| 				readable.destroy(); | ||||
| 				const type = fileType(buffer); | ||||
| 				const type = await FileType.fromBuffer(buffer); | ||||
| 				if (type) { | ||||
| 					if (type.mime == 'application/xml' && checkSvg(path)) { | ||||
| 						res(['image/svg+xml', 'svg']); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue