Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 7db7e38

Browse files
committed
Prepare next release.
1 parent 60ea210 commit 7db7e38

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
1212

1313
### Fixed
1414

15+
- (Android) Fix: Notification drawer doesn't close after click on action that navigates you to app [#1914](https://github.com/zo0r/react-native-push-notification/issues/1914)
16+
- (iOS) Fix: foreground notification property [#1916](https://github.com/zo0r/react-native-push-notification/pull/1916)
17+
1518
## [7.2.2] 2021-03-04
1619

1720
### Fixed

android/src/main/java/com/dieam/reactnativepushnotification/modules/RNPushNotificationActions.java

+2
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public void onReceive(final Context context, Intent intent) {
6161
RNPushNotificationHelper helper = new RNPushNotificationHelper((Application) context.getApplicationContext());
6262

6363
helper.invokeApp(bundle);
64+
65+
context.sendBroadcast(new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS));
6466
} else {
6567

6668
// We need to run this on the main thread, as the React code assumes that is true.

0 commit comments

Comments
 (0)