Closed
Bug 906529
Opened 12 years ago
Closed 12 years ago
[Buri][Call Log] Device doesn't log unknown numbers
Categories
(Firefox OS Graveyard :: Gaia::Dialer, defect, P1)
Firefox OS Graveyard
Gaia::Dialer
Tracking
(blocking-b2g:1.4+)
RESOLVED
WORKSFORME
| blocking-b2g | 1.4+ |
People
(Reporter: sync-1, Assigned: rik)
References
Details
Attachments
(1 file)
|
23.13 KB,
image/png
|
Details |
Firefox os v1.1
Mozilla build ID:20130806071254
DEFECT DESCRIPTION: Device is not showing "unknow numbers" in call log. If you arrange to receive call from call which did activation of CLIR you will see that after answer or reject the call, phone is not showing the "unknow number" in logs.
EXPECTED BEHAVIOUR: Device must show "Unknow number" in call log.
REPRODUCING PROCEDURES:
1.- From phone A do a call doing CLIR to Fire Fox (phone B), it means, device must dial #31#firefoxphonenumber example:
#31#3310555201
2.- Answer the call.
3.- Go to "Call Log" and you will noticed there is not "Call Log" about received call with "unknow number".
ASSOCIATE SPECIFICATION:
TEST PLAN REFERENCE:
TOOLS AND PLATFORMS USED:
USER IMPACT: Wrong Interface.
REPRODUCING RATE:100%
For FT PR, Please list reference mobile's behavior:
Updated•12 years ago
|
blocking-b2g: --- → leo?
Updated•12 years ago
|
Summary: [Buri][Call Log] Device don → [Buri][Call Log] Device doesn't log unknown numbers
Comment 1•12 years ago
|
||
Seems like a dup of bug 893927? Although *67 rather than #31# is used there..
Comment 3•12 years ago
|
||
Hi Peter,
I think this is a bug in call log.
In call_log_db.js, there is no code to execute the case of "number == null" (https://github.com/mozilla-b2g/gaia/blob/v1-train/apps/communications/dialer/js/call_log_db.js#L680)
So the "Withheld Number" does not be saved in call log database, of course it can not be displayed in call log.
Additional, another question, once the "Withheld Number" displayed in call log, when user click it, how to display the prompt? (current behavior is prompt the "call", "create new contact", and "add to exiting contact" dialog)
Comment 4•12 years ago
|
||
Hi, the critical issue is this "Withheld Number" even can not be displayed in call log.Please check, thanks a lot!
Updated•12 years ago
|
Flags: needinfo?(rexboy)
Comment 5•12 years ago
|
||
I have a patch, hope it can help you.
--- a/apps/communications/dialer/js/call_log_db.js
+++ b/apps/communications/dialer/js/call_log_db.js
@@ -540,8 +540,16 @@ var CallLogDBManager = {
* Helper function to get the group ID from a recent call object.
*/
_getGroupId: function getGroupId(recentCall) {
- var groupId = [Utils.getDayDate(recentCall.date),
- recentCall.number, recentCall.type];
+ var groupId = [];
+ if (recentCall.number) {
+ groupId = [Utils.getDayDate(recentCall.date),
+ recentCall.number, recentCall.type];
+ } else {
+ groupId = [Utils.getDayDate(recentCall.date),
+ '', recentCall.type];
+ }
if (recentCall.status && recentCall.type === 'incoming') {
groupId.push(recentCall.status);
Comment 7•12 years ago
|
||
Can we consider this for v1.2? - showing unknown numbers in call log.
blocking-b2g: - → koi?
Comment 8•12 years ago
|
||
triage: nice to have for v1.2, but really want to get this done in v1.3. 1.3+. please ask for approval for uplifting to v1.2 if needed
blocking-b2g: koi? → 1.3+
| Assignee | ||
Updated•12 years ago
|
Assignee: nobody → anthony
Updated•12 years ago
|
Flags: needinfo?(rexboy)
Updated•12 years ago
|
blocking-b2g: 1.3+ → 1.4?
Updated•12 years ago
|
blocking-b2g: 1.4? → 1.4+
Comment 9•12 years ago
|
||
This is a basic functionnality that is missing.
Comment 10•12 years ago
|
||
Works for me with latest m-c/gaia
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•