Skip to content

Commit fcd1b3a

Browse files
author
wicked-tc130
authored
Merge pull request #160 from jpush/dev
update version to 3.1.4
2 parents 685f4d4 + 1a6c059 commit fcd1b3a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

android/src/io/jchat/android/JMessageModule.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,9 +1855,9 @@ public void gotResult(int status, String desc) {
18551855
public void getPublicGroupInfos(final ReadableMap map, final Callback success, final Callback fail) {
18561856
try {
18571857
String appKey = map.hasKey(Constant.APP_KEY) ? map.getString(Constant.APP_KEY) : "";
1858-
int start = Integer.parseInt(map.getString(Constant.START));
1859-
int count = Integer.parseInt(map.getString(Constant.COUNT));
1860-
String reason = map.getString(Constant.REASON);
1858+
int start = map.getInt(Constant.START);
1859+
int count = map.getInt(Constant.COUNT);
1860+
//String reason = map.getString(Constant.REASON);
18611861
JMessageClient.getPublicGroupListByApp(appKey, start, count, new RequestCallback<List<GroupBasicInfo>>() {
18621862
@Override
18631863
public void gotResult(int status, String desc, List<GroupBasicInfo> groupBasicInfos) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jmessage-react-plugin",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"description": "a jmessage plugin for react native application",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)