Joe Ferrucci
Joe Ferrucci
I'm having a similar issue. I tried the latest Swift 3.0 with Xcode 8 Beta, and also DEVELOPMENT-SNAPSHOT-2016-05-09-a. -- I am running `swiftenv`. Here is my terminal log that shows...
This still doesn't work in Texture 3.0.0 as of January 22, **_2022_** - I'm forced to use `imageNodeWillStartDisplayAsynchronously` for now π -- could use `imageNodeDidFinishDecoding` but it looks like that...
What's your code look like?
Before v1.0, we were able to initialize any generated model directly using the default initializer (e.g., from a struct). Now, some models are SelectionSets and the properties have no setters...
@BrentMifsud, you might like this thread: https://github.com/apollographql/apollo-ios/issues/2883
lets see your config.
Still an issue today, Sentry iOS SDK v8.24.0
Yes, that is the one. When I try to pass a dictionary into `capture(event:properties:)` it fails with that error. Here is a trivial example to help highlight it ```swift struct...
Why not just check before you execute your query. ```golang if len(configIDs) != 0 { db.Exec("DELETE FROM server_config WHERE server_id = ? AND config_id NOT IN (?)", srvID, configIDs) }...
```golang if len(configIDs) == 0 { db.Exec("DELETE FROM server_config WHERE server_id = ?", srvID) } else { db.Exec("DELETE FROM server_config WHERE server_id = ? AND config_id NOT IN (?)", srvID,...