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

@@ -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 };
}