Merge pull request #914 from robotal/patch-3
[FIX] Syntax error in prior pull request
This commit is contained in:
commit
2979cc4950
|
@ -356,7 +356,7 @@ public class RNFirebaseNotificationManager {
|
|||
if(vibrate != null) {
|
||||
long[] vibrateArray = new long[vibrate.size()];
|
||||
for (int i = 0; i < vibrate.size(); i++) {
|
||||
vibrateArray[i] = (vibrate.get(i).longValue();
|
||||
vibrateArray[i] = vibrate.get(i).longValue();
|
||||
}
|
||||
nb = nb.setVibrate(vibrateArray);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue