Merge pull request #1468 from ecexplorer/master

BUGFIX: ReactMethod createChannelGroups() name fix
This commit is contained in:
Michael Diarmid
2018-09-07 16:18:01 +01:00
committed by GitHub

View File

@@ -163,7 +163,7 @@ public class RNFirebaseNotifications extends ReactContextBaseJavaModule implemen
}
@ReactMethod
public void createChannelGroup(ReadableArray channelGroupsArray, Promise promise) {
public void createChannelGroups(ReadableArray channelGroupsArray, Promise promise) {
notificationManager.createChannelGroups(channelGroupsArray);
promise.resolve(null);
}