Actually call the new generic notification handler
This commit is contained in:
parent
80eb386dd8
commit
562840a7c5
|
@ -174,7 +174,7 @@ public class BluetoothCommunicationService extends Service {
|
||||||
case ACTION_NOTIFICATION_GENERIC: {
|
case ACTION_NOTIFICATION_GENERIC: {
|
||||||
String title = intent.getStringExtra("notification_title");
|
String title = intent.getStringExtra("notification_title");
|
||||||
String body = intent.getStringExtra("notification_body");
|
String body = intent.getStringExtra("notification_body");
|
||||||
mDeviceSupport.onSMS(title, body);
|
mDeviceSupport.onGenericNotification(title, body);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case ACTION_NOTIFICATION_SMS: {
|
case ACTION_NOTIFICATION_SMS: {
|
||||||
|
|
Loading…
Reference in New Issue