anton0xf

Results 13 comments of anton0xf

> Works fine on Intel But I have the issue on Intel

TIL, that exists https://desktop.telegram.org/ version for mac, and it works fine

It is even works well if I don't mention `"a"` fielld: ```scala case class Foo(a: Option[Int]) implicit val fooReader: JsonReader[Foo] = jsonReader[Foo] { ReaderBuilder[Foo] .extract(_.a) .from("c".as[Option[Int]], "b".as[Option[Int]])((c, b) => c.orElse(b))...