BUGFIX: ReactMethod createChannelGroups() name fix

This commit is contained in:
Matthew Wood
2018-09-07 10:46:17 -04:00
parent 90acbb5ff5
commit 8a26f30a14

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);
}