We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After upgrading to 0.40.2 it stopped working. I'm using Play 2.7.3. Version 0.30.1 worked just fine.
This is the error I get:
Image.scala:13:81: not found: value JsSuccess [error] implicit lazy val jsonFormat: OFormat[Image] = Jsonx.formatCaseClassUseDefaults[Image]
case class Image(url: String, size: Option[Size] = None, owned: Boolean = false, thumbnails: List[Image] = List()) object Image { implicit lazy val jsonFormat: OFormat[Image] = Jsonx.formatCaseClassUseDefaults[Image] } case class Size(width: Int, height: Int) object Size { implicit lazy val jsonFormat: OFormat[Size] = Jsonx.formatCaseClassUseDefaults[Size] }
The text was updated successfully, but these errors were encountered:
I am getting this issue as well. If there is something else we need to add, it is unclear.
Sorry, something went wrong.
add import play.api.libs.json.JsSuccess as a workaround there is pr for that #72
import play.api.libs.json.JsSuccess
No branches or pull requests
After upgrading to 0.40.2 it stopped working. I'm using Play 2.7.3. Version 0.30.1 worked just fine.
This is the error I get:
Image.scala:13:81: not found: value JsSuccess [error] implicit lazy val jsonFormat: OFormat[Image] = Jsonx.formatCaseClassUseDefaults[Image]
The text was updated successfully, but these errors were encountered: