Skip to content

Commit

Permalink
Merge pull request #1704 from hakansaglam29/main
Browse files Browse the repository at this point in the history
Fix notification launchUrl changed to launchURL to make it compatible…
  • Loading branch information
nan-li committed Jun 5, 2024
2 parents 1aadf06 + e8fe3ef commit 99609ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static HashMap<String, Object> convertNotificationToMap(INotification not
if (notification.getSmallIconAccentColor() != null)
notificationHash.put("smallIconAccentColor", notification.getSmallIconAccentColor());
if (notification.getLaunchURL() != null)
notificationHash.put("launchUrl", notification.getLaunchURL());
notificationHash.put("launchURL", notification.getLaunchURL());
if (notification.getSound() != null)
notificationHash.put("sound", notification.getSound());
if (notification.getLedColor() != null)
Expand Down

0 comments on commit 99609ff

Please sign in to comment.