Hi!
The SDK gets stuck at the following (regardless of the points provided)
let point = AGSMultipoint(points: [])
point.isEqual(to: point)
Cheers,
Kristoffer
Solved! Go to Solution.
This issue has been fixed in 100.11.0
Thanks for reporting this issue. We'll look into it! 🙂
Edit: it is an existing bug 🐛 in the SDK and we'll fix it in the next release!
Many thanks for catching that! 👍
Meanwhile, you may use a temporary workaround like this
```swift
extension AGSMultipoint {
func isEqualWithoutHanging(to other: AGSGeometry) -> Bool {
return super.isEqual(to: other)
}
}
```
This issue has been fixed in 100.11.0