1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-04 03:52:02 +02:00

Add com.asus.asusincallui to handleCallNotification blacklist

This commit is contained in:
mvn23 2022-05-09 11:51:28 +02:00 committed by Gitea
parent 873ac85001
commit 43bcac072d

View File

@ -494,7 +494,7 @@ public class NotificationListener extends NotificationListenerService {
private void handleCallNotification(StatusBarNotification sbn) {
String app = sbn.getPackageName();
LOG.debug("got call from: " + app);
if (app.equals("com.android.dialer") || app.equals("com.android.incallui") || app.equals("com.google.android.dialer")) {
if (app.equals("com.android.dialer") || app.equals("com.android.incallui") || app.equals("com.google.android.dialer") || app.equals("com.asus.asusincallui")) {
LOG.debug("Ignoring non-voip call");
return;
}