Skip to content

Commit 45d8089

Browse files
committed
fix swift query object
1 parent 0aa2bf1 commit 45d8089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/swift/Sources/Models/Query.swift.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class Query {
3737
case let value as Array<Any>:
3838
return "\(attribute).\(oper)(\(value.map { parseValues($0) }.joined(separator: ",") ))"
3939
default:
40-
return "\(attribute).\(oper)(\(parseValues(value))"
40+
return "\(attribute).\(oper)(\(parseValues(value)))"
4141
}
4242
}
4343

0 commit comments

Comments
 (0)