Luke
Luke
@egenvall You mean using one coordinator for the whole structure? And by router you mean coordinator?
Hey @thienhaole92. This is a `body` of your response?
@thienhaole92 can you please give me the `URL` to httpbin that you use?
Okay. I think the most important thing is the type of a dictionary. The issue is rather with `mapper`, but switching it to `[String: String]` fixes the problem: ```swift struct...
Yes, but this is one of the few types that `mapper` supports. See this [function](https://github.com/lyft/mapper/blob/master/Sources/Mapper.swift#L352-L356). [And this is the list of default convertibles](https://github.com/lyft/mapper/blob/master/Sources/DefaultConvertible.swift). As a workaround you could use `NSDictionary?`...
Hey @gmann1. I'm afraid it is not possible to serialize to JSON. https://github.com/lyft/mapper is just a **deserializer**. You would have to do it by hand or use `Encodable`/`Decodable` (thus this...
Hey @jonathanbyte. Basically [Mapper](https://github.com/lyft/mapper) 8.0.0 is available only in Swift 4.1+. You'll need to either use Swift 4.1 or Mapper 7.0.0. You can do it by manually adding this line...
Hey @edon2005. You are right, in case of an empty JSON you will get an exception. This is because `JSONSerialization` fails as well in this case. We would have to...
Hi @ivanmkc. You are right, it is a bug on my end. [I removed the `observeOn` lines from `Observable` extension](https://github.com/sunshinejr/Moya-ModelMapper/commit/4af17ff44471429f6f6fa3a9ebb2ba3c6e789918), but forgot to do it for `Single`. Would you be...
@ivanmkc Yeah, I think that developers should handle switching between schedulers themselves (your alternative solution).