You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Array of references seems to be unsupported. In DataType.init(key:value:data:) our runtime field type of Array<Pring.Reference<MyType>> doesn't fall into any useful type matching case.
This seems to be because there's a check for subjectType == [Any].self, rather than using as? to check for compatible array types.
The text was updated successfully, but these errors were encountered:
Array of references seems to be unsupported. In
DataType.init(key:value:data:)
our runtime field type ofArray<Pring.Reference<MyType>>
doesn't fall into any useful type matching case.This seems to be because there's a check for
subjectType == [Any].self
, rather than usingas?
to check for compatible array types.The text was updated successfully, but these errors were encountered: