-
Notifications
You must be signed in to change notification settings - Fork 227
Open
Labels
bugM-T: confirmed bug report. Issues are confirmed when the reproduction steps are documentedM-T: confirmed bug report. Issues are confirmed when the reproduction steps are documented
Description
Problem
The ChannelCreatedEvent has a created field which is an Integer, but should be Long.
This is the definition:
java-slack-sdk/slack-api-model/src/main/java/com/slack/api/model/event/ChannelCreatedEvent.java
Line 34 in d1f005c
| private Integer created; |
Please change this to Long.
Example
Here's a sample of the error we receive when deserializing JSON payloads:
j.l.NumberFormatException: Expected an int but was 1760848483374 at line 1 column 669 path $.event.channel.updated
This number is represents the number of milliseconds since epoch and large than max int.
Related
This is a duplicate of this issue, which was auto-closed due to inacivity by github-actions:
Metadata
Metadata
Assignees
Labels
bugM-T: confirmed bug report. Issues are confirmed when the reproduction steps are documentedM-T: confirmed bug report. Issues are confirmed when the reproduction steps are documented