You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
We noticed that Optional<Boolean> values are not deserialized correctly into SlackUser. For example, Slack sends user with key is_bot but we expect bot due to the Jackson deserialization logic which works like that for isBot methods. We need to add get prefix to those methods to fix deserialization or specify key via @JsonProperty. The second option seems better as there are already some usages of the methods. #180
Describe the bug
We noticed that
Optional<Boolean>
values are not deserialized correctly intoSlackUser
. For example, Slack sends user with keyis_bot
but we expectbot
due to the Jackson deserialization logic which works like that forisBot
methods. We need to addget
prefix to those methods to fix deserialization or specify key via@JsonProperty
. The second option seems better as there are already some usages of the methods.#180
To Reproduce
Steps to reproduce the behavior:
isXxx
getter are deserialized.Expected behavior
All the fields with
isXxx
getter are deserialized correctly.The text was updated successfully, but these errors were encountered: