Merge branch 'main' into extend

This commit is contained in:
手瓜一十雪
2024-08-20 20:07:02 +08:00
9 changed files with 10 additions and 8 deletions

View File

@@ -2,7 +2,7 @@ import path, { dirname } from 'path';
import { fileURLToPath } from 'url';
import fs from 'fs';
export const napcat_version = '2.0.35';
export const napcat_version = '2.0.36';
export class NapCatPathWrapper {
binaryPath: string;

View File

@@ -259,7 +259,7 @@ export async function uri2local(dir: string, uri: string, filename: string | und
if (success) {
filePath = fileTypePath;
fileExt = ext;
filename = path.basename(filePath, fileExt);
filename = filename + '.' + ext;
}
return { success: true, errMsg: '', fileName: filename, ext: fileExt, path: filePath, isLocal: true };
}