Skip to content

Commit e259fd1

Browse files
committed
Fix syntax error. Bump v8.1.5
1 parent 700938b commit e259fd1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
### Version 8.1.3 (24/11/2020)
3+
### Version 8.1.5 (24/11/2020)
44
- Fixed Dynamic link callback on Android (2)
55

66
### Version 8.1.2 (23/11/2020)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "8.1.3",
2+
"version": "8.1.5",
33
"name": "cordova-plugin-fcm-ng",
44
"cordova_name": "Cordova FCM Push Plugin NG",
55
"description": "Google Firebase Cloud Messaging Cordova Plugin",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
-->
2020
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2121
id="cordova-plugin-fcm-ng"
22-
version="8.1.3">
22+
version="8.1.5">
2323
<name>FCMPluginNG</name>
2424
<description>Cordova FCM Plugin NG</description>
2525
<license>Apache 2.0</license>

src/android/FCMPlugin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
import android.os.Bundle;
1717

18+
import com.google.android.gms.tasks.OnFailureListener;
1819
import com.google.firebase.messaging.FirebaseMessaging;
1920
import com.google.firebase.iid.FirebaseInstanceId;
2021
import com.google.firebase.analytics.FirebaseAnalytics;
@@ -371,7 +372,7 @@ public void run() {
371372
}
372373

373374
private void getDynamicLink(CallbackContext callbackContext) {
374-
respondWithDynamicLink(cordova.getActivity().getIntent(), , callbackContext);
375+
respondWithDynamicLink(cordova.getActivity().getIntent(), callbackContext);
375376
}
376377

377378
private void onDynamicLink(CallbackContext callbackContext) {

0 commit comments

Comments
 (0)