Skip to content

Commit 2c0c935

Browse files
committed
Adding FigIrisAutoTrimmerMotionSampleExport to the exceptions. Sheesh.
1 parent 11e9e34 commit 2c0c935

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

catalog/MDCCatalog/Runtime.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ func getAllClasses() -> [AnyClass] {
4242
func classesRespondingToSelector(selector: Selector) -> [AnyClass] {
4343
return getAllClasses().filter {
4444
let className = NSStringFromClass($0)
45+
NSLog("%@", className);
4546
if className == "SwiftObject" || className == "Object" || className.hasPrefix("Swift.") ||
46-
className.hasPrefix("_") || className.hasPrefix("JS") || className == "NSLeafProxy" {
47+
className.hasPrefix("_") || className.hasPrefix("JS") || className == "NSLeafProxy" ||
48+
className == "FigIrisAutoTrimmerMotionSampleExport" {
4749
return false
4850
}
4951
return $0.respondsToSelector(selector)

0 commit comments

Comments
 (0)