@capacitor/push-notifications 8.1.1 → 8.1.2-dev-2553-20260623T121943.0

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.
@@ -125,7 +125,7 @@ public class NotificationChannelManager {
125
125
  channel.put(CHANNEL_SOUND, notificationChannel.getSound());
126
126
  channel.put(CHANNEL_VIBRATE, notificationChannel.shouldVibrate());
127
127
  channel.put(CHANNEL_USE_LIGHTS, notificationChannel.shouldShowLights());
128
- channel.put(CHANNEL_LIGHT_COLOR, String.format("#%06X", (0xFFFFFF & notificationChannel.getLightColor())));
128
+ channel.put(CHANNEL_LIGHT_COLOR, String.format("#%06X", 0xFFFFFF & notificationChannel.getLightColor()));
129
129
  Logger.debug(Logger.tags("NotificationChannel"), "visibility " + notificationChannel.getLockscreenVisibility());
130
130
  Logger.debug(Logger.tags("NotificationChannel"), "importance " + notificationChannel.getImportance());
131
131
  channels.put(channel);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/push-notifications",
3
- "version": "8.1.1",
3
+ "version": "8.1.2-dev-2553-20260623T121943.0",
4
4
  "description": "The Push Notifications API provides access to native push notifications.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -81,6 +81,5 @@
81
81
  },
82
82
  "publishConfig": {
83
83
  "access": "public"
84
- },
85
- "gitHead": "63c874c25367d20d68d0d1cc44427ba49b1af79b"
84
+ }
86
85
  }