We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22836f commit b1d24c3Copy full SHA for b1d24c3
SyntaxHighlightRenderXPC/SCSHBaseXPCService.swift
@@ -341,6 +341,10 @@ class SCSHBaseXPCService: NSObject {
341
try? "No settings found for the file UTI (\(u.UTI)) but a customized plist file exists.".appendLine(to: logFile)
342
plain = nil
343
attributes = nil
344
+ } else if let u = u, let _ = settings.utiSettings[u.UTI] {
345
+ uti = u.UTI
346
+ plain = nil
347
+ attributes = nil
348
} else {
349
try? "No settings found for the file UTI (\(u?.UTI ?? ""))".appendLine(to: logFile)
350
attributes = MagicAttributes(url: url, logFile: logFile)
0 commit comments