1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 03:50:43 +02:00

Actually call the new generic notification handler

This commit is contained in:
cpfeiffer 2015-05-14 00:04:54 +02:00
parent 80eb386dd8
commit 562840a7c5

View File

@ -174,7 +174,7 @@ public class BluetoothCommunicationService extends Service {
case ACTION_NOTIFICATION_GENERIC: {
String title = intent.getStringExtra("notification_title");
String body = intent.getStringExtra("notification_body");
mDeviceSupport.onSMS(title, body);
mDeviceSupport.onGenericNotification(title, body);
break;
}
case ACTION_NOTIFICATION_SMS: {