Skip to content

Commit

Permalink
fix notification PendingIntent
Browse files Browse the repository at this point in the history
  • Loading branch information
luvletter2333 committed Mar 28, 2023
1 parent 2a9498e commit 31266a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3852,7 +3852,7 @@ private void showOrUpdateNotification(boolean notifyAboutLast) {
}
}
intent.putExtra("currentAccount", currentAccount);
PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_ONE_SHOT | PendingIntent.FLAG_MUTABLE);
PendingIntent contentIntent = PendingIntent.getActivity(ApplicationLoader.applicationContext, 0, intent, PendingIntent.FLAG_IMMUTABLE | PendingIntent.FLAG_ONE_SHOT);

mBuilder.setContentTitle(name)
.setSmallIcon(R.drawable.notification)
Expand Down

0 comments on commit 31266a5

Please sign in to comment.