Skip to content

Commit 62a6b0a

Browse files
committed
Merge branch 'dev'
2 parents 2f993cb + 7e96938 commit 62a6b0a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ public void forwardMessage(ReadableMap map, final Callback success, final Callba
15021502
options.setCustomNotificationEnabled(optionMap.getBoolean("isCustomNotificationEnabled"));
15031503
}
15041504
if (optionMap.hasKey("notificationTitle")) {
1505-
options.setNotificationText(optionMap.getString("notificationTitle"));
1505+
options.setNotificationTitle(optionMap.getString("notificationTitle"));
15061506
}
15071507
if (optionMap.hasKey("notificationText")) {
15081508
options.setNotificationText(optionMap.getString("notificationText"));

android/src/io/jchat/android/utils/JMessageUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void gotResult(int status, String desc) {
8282
optionMap.getBoolean("isCustomNotificationEnabled"));
8383
}
8484
if (optionMap.hasKey("notificationTitle")) {
85-
options.setNotificationText(optionMap.getString("notificationTitle"));
85+
options.setNotificationTitle(optionMap.getString("notificationTitle"));
8686
}
8787
if (optionMap.hasKey("notificationText")) {
8888
options.setNotificationText(optionMap.getString("notificationText"));

example/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"babel-plugin-transform-decorators-legacy": "^1.3.4",
1010
"babel-preset-react-native-stage-0": "^1.0.1",
1111
"jcore-react-native": "^ 1.2.9",
12-
"jmessage-react-plugin": "^2.4.1",
12+
"jmessage-react-plugin": "^2.4.2",
1313
"mobx": "^3.4.1",
1414
"mobx-react": "^4.3.5",
1515
"react": "^16.0.0",

0 commit comments

Comments
 (0)