Skip to content
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #51 from admin-ch/bugfix/verifier-active-modes-nul…
Browse files Browse the repository at this point in the history
…lable

Make verifier active modes nullable to prevent JSON parsing error
  • Loading branch information
benz-ubique authored Dec 14, 2021
2 parents fa7ae7b + 060ee31 commit 6daaa73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ data class RuleSet(
@JsonClass(generateAdapter = true)
data class ModeRules(
val activeModes: List<ActiveModes>,
val verifierActiveModes: List<ActiveModes>,
val verifierActiveModes: List<ActiveModes>?,
@RawJsonString
val logic: String,
)
Expand Down

0 comments on commit 6daaa73

Please sign in to comment.