Skip to content

Commit 889eb3c

Browse files
committed
Remove No History flag
1 parent eacd0ce commit 889eb3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OneSignalSDK/onesignal/src/main/java/com/onesignal/OneSignal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ private static boolean openURLFromNotification(Context context, JSONArray dataAr
16271627
url = "http://" + url;
16281628

16291629
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url.trim()));
1630-
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET |Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
1630+
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET |Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
16311631
context.startActivity(intent);
16321632
urlOpened = true;
16331633
}

0 commit comments

Comments
 (0)