Skip to content

Commit

Permalink
Merge pull request #1688 from novasamatech/fix/add-network-exception
Browse files Browse the repository at this point in the history
Fixed JsonDeserializer
  • Loading branch information
antonijzelinskij authored Oct 10, 2024
2 parents 1533078 + 1dc5a61 commit ca7b644
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private class WrapToListSerializer : JsonDeserializer<List<*>> {
}

return json.asJsonArray.map {
context.deserialize<Any?>(json, valueType)
context.deserialize<Any?>(it, valueType)
}
}
}
Expand Down

0 comments on commit ca7b644

Please sign in to comment.