Daniel Rees
Daniel Rees
I'm having the same issue. I am unable to update to anything newer than 1.1.2 while `platform :ios = "7.0"`. Bumping to `:ios = "8.0"` resolved the issue but my...
@hubfresher [URLSessionWebSocketTask](https://developer.apple.com/documentation/foundation/urlsessionwebsockettask) addded in iOS 13.
Couldn't the default behavior be to automatically stub a method to return `.thenDoNothing()` and then instead of crashing, fail the test case with a message that an unexpected method was...
+1 @shashankpatel thanks for your answer. It was very helpful and solved the issue
You can implement your own `decoder` (see Defaults.swift) but the client is expecting that `decoder` will return `[Any]` which will be parsed into a `Message`. If you don't decode the...
Finally getting around to looking into this. Turns out if you add `[weak self]` to the callback, then the callback is deallocated regardless unless you hold on to a reference...
The URLSession used to create the websocket task is found [here](https://github.com/davidstump/SwiftPhoenixClient/blob/master/Sources/SwiftPhoenixClient/PhoenixTransport.swift#L199-L216). I'm not sure exactly what API you would need to accomplish what you're trying to do but you can...
Thanks for the great issue and linking to a related issue in the JS client. I'll work on getting this fixed up
are you removing the channel from the socket as well? ```kotlin channel.leave() socket.remove(channel) ```
There is not. If you have time and want to investigate and submit a PR, I will gladly review it