@capacitor/local-notifications 7.0.5 → 7.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -141,7 +141,7 @@ public class LocalNotificationsPlugin extends Plugin {
141
141
  JSObject extras = new JSObject();
142
142
 
143
143
  for (String key : notification.extras.keySet()) {
144
- extras.put(key, notification.extras.getString(key));
144
+ extras.put(key, notification.extras.get(key));
145
145
  }
146
146
 
147
147
  jsNotif.put("data", extras);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/local-notifications",
3
- "version": "7.0.5",
3
+ "version": "7.0.6",
4
4
  "description": "The Local Notifications API provides a way to schedule device notifications locally (i.e. without a server sending push notifications).",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -82,5 +82,5 @@
82
82
  "publishConfig": {
83
83
  "access": "public"
84
84
  },
85
- "gitHead": "8b8d7e5bc406a4ac00545131dcf4287a7964f208"
85
+ "gitHead": "78a4a360a0ef77fc659ffbedf24af3114cc7ca72"
86
86
  }