From: Rafal Michalski <rafal.michalski@xxxxxxxxxxx> After making some incoming, outgoing, missed calls, history lists of them (ich, och, mch) are stored on device. In current implementation queries towards tracker for incoming calls include also missed calls. So list for incoming calls displayed on paired BT headset/carkit screen (e.g. BH-903, CK-200) also contains numbers from missed calls list. To block adding missed calls list numbers to incoming calls there should be added info that incoming call is in fact only answered call. So macros additionally include info: "nmo:isAnswered true ." Without this, missed calls was treated as incoming calls. --- plugins/phonebook-tracker.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/plugins/phonebook-tracker.c b/plugins/phonebook-tracker.c index 89c612e..98b6410 100644 --- a/plugins/phonebook-tracker.c +++ b/plugins/phonebook-tracker.c @@ -125,6 +125,7 @@ "?call a nmo:Call ; " \ "nmo:from ?c ; " \ "nmo:isSent false . " \ + "nmo:isAnswered true ." \ "?c a nco:Contact . " \ "OPTIONAL { ?c nco:hasPhoneNumber ?h . } " \ "OPTIONAL { ?c nco:hasEmailAddress ?e . } " \ @@ -144,6 +145,7 @@ "?call a nmo:Call ; " \ "nmo:from ?c ; " \ "nmo:isSent false . " \ + "nmo:isAnswered true ." \ "?c a nco:Contact . " \ "OPTIONAL { ?c nco:hasPhoneNumber ?h . } " \ "} ORDER BY DESC(nmo:receivedDate(?call))" -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html