You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey,
I was experiencing issues to send sms to contacts from the Jolla address book (actually, myself during tests) however, sending an sms to myself from the Jolla was making a new friend pop up in squilla, only labelled with my phone number.
The issues is actually due to the fact that my phone numbers are saved with a white space every third number (getting something like +XX X XX XX XX XX which I think is easier to read) but this was apparently making the dbus call used to send the sms fail.
To fix this, I changed friends.py#233
to `new_friend = Friend(fullname, number.replace(" ",""), auth_user)
The text was updated successfully, but these errors were encountered:
Hey,
I was experiencing issues to send sms to contacts from the Jolla address book (actually, myself during tests) however, sending an sms to myself from the Jolla was making a new friend pop up in squilla, only labelled with my phone number.
The issues is actually due to the fact that my phone numbers are saved with a white space every third number (getting something like +XX X XX XX XX XX which I think is easier to read) but this was apparently making the dbus call used to send the sms fail.
To fix this, I changed friends.py#233
to `new_friend = Friend(fullname, number.replace(" ",""), auth_user)
The text was updated successfully, but these errors were encountered: