From f3a00b57b01804777b37dd15e3a276abe5fd65dc Mon Sep 17 00:00:00 2001 From: "leedongmyung(desktop)" Date: Thu, 3 Apr 2025 15:33:12 +0900 Subject: [PATCH] bug fixed --- lib/oto/commands/file/file.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oto/commands/file/file.dart b/lib/oto/commands/file/file.dart index 4057df5..a9f86f9 100644 --- a/lib/oto/commands/file/file.dart +++ b/lib/oto/commands/file/file.dart @@ -78,7 +78,7 @@ class FileInfo extends Command { var map = {}; map['path'] = file.path; map['name'] = path.basename(file.path); - map['withoutExtentionName'] = path.withoutExtension(map['baseName']); + map['withoutExtentionName'] = path.withoutExtension(map['name']); map['extension'] = path.extension(file.path); map['symbolicPath'] = await file.resolveSymbolicLinks(); map['size'] = stat.size;