View Single Post
Moderator | Posts: 6,215 | Thanked: 6,400 times | Joined on Nov 2011
#8835
Originally Posted by Yisroel491 View Post
i just noticed something. every other country when selected outputs +countrycode. example: jamaica is +1, kenya +245, finland +358. israel has an extra plus ++972. i think that must be my issue but how can i fix it? there's no option to type in the cc manually.
You've nailed the bug

use your favourite text editor and edit the file /opt/waxmppplugin/bin/wazapp/UI/Registration/regmain.qml

the line of your interest is
Code:
ListElement{name: "Israel"; cc: "+972"; mcc:"425"}
remove the + from +972 and save it; it should now register fine...


A one-line sed command if you prefer to use:
Code:
sed -i 's/ListElement{name: "Israel"; cc: "+972"; mcc:"425"
}/ListElement{name: "Israel"; cc:"972"; mcc:"425"}/' /opt/waxmppplugin/bin/wazapp/UI/Registration/regmain.qml

Last edited by thedead1440; 2013-01-06 at 04:56. Reason: added sed command
 

The Following User Says Thank You to thedead1440 For This Useful Post: