[FIX] Syntax error in prior pull request

There was an extra parentheses added in the web view which caused the class to fail compilation.
This commit is contained in:
Tal Davidi 2018-03-27 03:12:51 -04:00 committed by GitHub
parent 802557652d
commit 6084360676
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ public class RNFirebaseNotificationManager {
if(vibrate != null) { if(vibrate != null) {
long[] vibrateArray = new long[vibrate.size()]; long[] vibrateArray = new long[vibrate.size()];
for (int i = 0; i < vibrate.size(); i++) { for (int i = 0; i < vibrate.size(); i++) {
vibrateArray[i] = (vibrate.get(i).longValue(); vibrateArray[i] = vibrate.get(i).longValue();
} }
nb = nb.setVibrate(vibrateArray); nb = nb.setVibrate(vibrateArray);
} }