let utc = Clock.system.converting(to: TimeZone(identifier: "UTC")!).thisMinute()
let plusFiveMinutes = (utc + .minutes(5)).firstInstant.date
Running it causes the following error to be thrown in Xcode:
(Nothing useful in the console, blocked out because it had sensitive API routes)
Any ideas here? It looks like some kind of possible recursion or stack overflow bug because the entire stack is filled with the two same calls (Value.range.getter and Value.approximateMidPoint.getter) but not positive.
Let me know if there's anything I can do to help debug.
I have the following code:
Running it causes the following error to be thrown in Xcode:
(Nothing useful in the console, blocked out because it had sensitive API routes)
Any ideas here? It looks like some kind of possible recursion or stack overflow bug because the entire stack is filled with the two same calls (
Value.range.getter
andValue.approximateMidPoint.getter
) but not positive.Let me know if there's anything I can do to help debug.