1
0
forked from mirror/misskey
This commit is contained in:
tamaina 2023-01-01 18:04:17 +00:00
parent 453ba25af2
commit 038d71988f

View File

@ -371,16 +371,11 @@ export class FileInfoService {
* Check the file is SVG or not * Check the file is SVG or not
*/ */
@bindThis @bindThis
public async checkSvg(target: string | Buffer) { public async checkSvg(path: string) {
try { try {
if (typeof target === 'string') { const size = await this.getFileSize(path);
const size = await this.getFileSize(target);
if (size > 1 * 1024 * 1024) return false; if (size > 1 * 1024 * 1024) return false;
return isSvg(await fs.promises.readFile(target)); return isSvg(await fs.promises.readFile(target));
} else {
if (target.length > 1 * 1024 * 1024) return false;
return isSvg(target);
}
} catch { } catch {
return false; return false;
} }