Skip to content

Commit 3de8159

Browse files
authored
chore: foundation packages compatibility fix
1 parent 317dbd2 commit 3de8159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.stansassets.xcode-project/Editor/Models/XCodeFramework.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public XCodeFramework(XCodeFrameworkName frameworkName, bool optional = false)
6464
public XCodeFramework(string frameworkName, bool optional = false)
6565
{
6666
frameworkName = frameworkName.Replace(".framework", string.Empty);
67-
FrameworkName = EnumUtility.ParseEnum<XCodeFrameworkName>(frameworkName);
67+
FrameworkName = EnumUtility.ParseOrDefault<XCodeFrameworkName>(frameworkName);
6868

6969
m_IsOptional = optional;
7070
}

0 commit comments

Comments
 (0)