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 aef6bc5 commit 42ff2dfCopy full SHA for 42ff2df
src/main/java/cn/jpush/api/report/ReportClient.java
@@ -103,11 +103,11 @@ public static void checkMsgids(String msgIds) {
103
for (String s : splits) {
104
s = s.trim();
105
if (!StringUtils.isEmpty(s)) {
106
- Integer.parseInt(s);
+ Long.parseLong(s);
107
}
108
109
} catch (NumberFormatException e) {
110
- throw new IllegalArgumentException("Every msg_id should be valid Integer number which splits by ','");
+ throw new IllegalArgumentException("Every msg_id should be valid Long number which splits by ','");
111
112
113
0 commit comments