View Single Post
Posts: 35 | Thanked: 18 times | Joined on Aug 2010 @ São Paulo, Brazil
#5441
Originally Posted by bb_szx View Post
@cepi
(...)
and please add a "+" in front of the number (in contactdeatil), for sms or phone call.
without you can't call or send a sms, because this number (without the "+") end in nothing.
I've fixed it by editing ContactProfile.qml
(/opt/waxmpplugin/bin/wazapp/UI/Contacts/ContactProfile.qml)

Line 212
From:
text: contactNumber
To:
text: "+" + contactNumber

Line 217
From:
onClicked: makeCall(contactNumber)
To:
onClicked: makeCall("+" + contactNumber)

Line 238
From:
onClicked: sendSMS(contactNumber)
To:
onClicked: sendSMS("+" + contactNumber)


All line numbers were taken Cepi's branch (here: https://github.com/CepiPerez/wazapp/...actProfile.qml)

Tested on version 0.8.11.5 and works almost perfectly -- now I am able to make calls but still can't send sms - app becomes very slow then crashes. I would take a look into logs, but I am very busy right now.


PS: Restart wazapp after changing those files
 

The Following 2 Users Say Thank You to cael_gomes For This Useful Post: