Merge lp:~tiagosh/telephony-service/fix-1398431 into lp:telephony-service

Proposed by Tiago Salem Herrmann
Status: Merged
Approved by: Bill Filler
Approved revision: 975
Merged at revision: 975
Proposed branch: lp:~tiagosh/telephony-service/fix-1398431
Merge into: lp:telephony-service
Diff against target: 11 lines (+1/-1)
1 file modified
libtelephonyservice/callentry.cpp (+1/-1)
To merge this branch: bzr merge lp:~tiagosh/telephony-service/fix-1398431
Reviewer Review Type Date Requested Status
Bill Filler (community) Approve
PS Jenkins bot continuous-integration Approve
Review via email: mp+243581@code.launchpad.net

Commit message

Only set voicemail is the phone number is not empty.

Description of the change

Only set voicemail is the phone number is not empty.

--Checklist--
Are there any related MPs required for this MP to build/function as expected? Please list.
No

Is your branch in sync with latest trunk (e.g. bzr pull lp:trunk -> no changes)
Yes

Did you perform an exploratory manual test run of your code change and any related functionality on device or emulator?
Yes

Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/telephony-service) on device or emulator?
Yes

If you changed the UI, was the change specified/approved by design?
N/A

If you changed UI labels, did you update the pot file?
N/A

If you changed the packaging (debian), did you add a core-dev as a reviewer to this MP?
N/A

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Bill Filler (bfiller) wrote :

approve

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'libtelephonyservice/callentry.cpp'
2--- libtelephonyservice/callentry.cpp 2014-08-26 19:09:09 +0000
3+++ libtelephonyservice/callentry.cpp 2014-12-03 19:01:58 +0000
4@@ -72,7 +72,7 @@
5 SIGNAL(CallPropertiesChanged(QString, QVariantMap)),
6 SLOT(onCallPropertiesChanged(QString,QVariantMap)));
7
8- if (mAccount) {
9+ if (mAccount && !mAccount->voicemailNumber().isEmpty()) {
10 setVoicemail(phoneNumber() == mAccount->voicemailNumber());
11 }
12

Subscribers

People subscribed via source and target branches