mirror of
https://gitlab.com/xynngh/YetAnotherCallBlocker.git
synced 2025-06-05 22:19:12 +02:00
Don't show reviews notification action for contacts
This commit is contained in:
@ -200,9 +200,12 @@ public class NotificationHelper {
|
||||
private static void addCallNotificationIntents(Context context,
|
||||
NotificationCompat.Builder builder,
|
||||
NumberInfo numberInfo) {
|
||||
builder.setContentIntent(createInfoIntent(context, numberInfo))
|
||||
.addAction(0, context.getString(R.string.online_reviews),
|
||||
createReviewsIntent(context, numberInfo));
|
||||
builder.setContentIntent(createInfoIntent(context, numberInfo));
|
||||
|
||||
if (numberInfo.contactItem == null) {
|
||||
builder.addAction(0, context.getString(R.string.online_reviews),
|
||||
createReviewsIntent(context, numberInfo));
|
||||
}
|
||||
}
|
||||
|
||||
private static PendingIntent createInfoIntent(Context context, NumberInfo numberInfo) {
|
||||
|
Reference in New Issue
Block a user