From aa34372a63db3cdaaa07ebdb81fa9812c3356d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petter=20H=C3=A4ggholm?= Date: Thu, 4 Jan 2018 12:18:17 -0800 Subject: [PATCH] Pass channel options to native module --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 86088f5..0fd049e 100644 --- a/index.js +++ b/index.js @@ -64,7 +64,7 @@ FCM.requestPermissions = () => { FCM.createNotificationChannel = (channel) => { if (Platform.OS === 'android') { - return RNFIRMessaging.createNotificationChannel(); + return RNFIRMessaging.createNotificationChannel(channel); } } -- 2.26.2