We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46300da commit e7222b9Copy full SHA for e7222b9
1 file changed
lara/views/fm/SantanderView.swift
@@ -1459,7 +1459,8 @@ private enum santanderfs {
1459
guard let plist = NSDictionary(contentsOf: URL(fileURLWithPath: infopath)) else { return nil }
1460
return (plist["CFBundleDisplayName"] as? String) ??
1461
(plist["CFBundleName"] as? String) ??
1462
- (plist["CFBundleExecutable"] as? String)
+ (plist["CFBundleExecutable"] as? String) ??
1463
+ URL(fileURLWithPath: path).deletingPathExtension().lastPathComponent
1464
}
1465
1466
if URL(fileURLWithPath: path).pathExtension == "app" {
0 commit comments