We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce88a2 commit 5ff79c9Copy full SHA for 5ff79c9
src/commonMain/kotlin/com/algolia/search/model/response/ResponseSearch.kt
@@ -332,7 +332,7 @@ public data class ResponseSearch(
332
public val distinctSeqIDOrNull: Int? = json.getPrimitiveOrNull(Key_DistinctSeqID)?.int
333
334
public val rankingInfoOrNull: RankingInfo? = json.getObjectOrNull(Key_RankingInfo)?.let {
335
- Json.fromJson(RankingInfo.serializer(), it)
+ JsonNonStrict.fromJson(RankingInfo.serializer(), it)
336
}
337
338
public val highlightResultOrNull: JsonObject? = json.getObjectOrNull(Key_HighlightResult)
0 commit comments