|
@@ -373,7 +373,7 @@ class KMAITranslationVC: NSViewController {
|
|
|
let fileAttributes = try fileManager.attributesOfItem(atPath: filePath)
|
|
|
if let fileSize = fileAttributes[.size] as? UInt64 {
|
|
|
let megabyteSize = fileSize / (1024 * 1024)
|
|
|
- return megabyteSize > 10
|
|
|
+ return megabyteSize >= 10
|
|
|
}
|
|
|
} catch {
|
|
|
print("Error: \(error)")
|