Updated handling of '+' in phone numbers, it is now never stripped but expected: all numbers should be full international phone numbers (including in contacts.tsv).
Ensure contacts from modem and contacts lists are all fully qualified phone numbers (starting with + and carrying a country prefix). This effectively filters out older/incompatible entries.
This commit is contained in:
parent
7f2f50c11a
commit
565eae8835
4 changed files with 7 additions and 5 deletions
|
@ -41,7 +41,7 @@ vid_to_number() {
|
|||
mmcli -m "$(modem_n)" -o "$1" -K |
|
||||
grep call.properties.number |
|
||||
cut -d ':' -f2 |
|
||||
tr -d ' +'
|
||||
tr -d ' '
|
||||
}
|
||||
|
||||
log_event() {
|
||||
|
|
|
@ -103,7 +103,7 @@ checkfornewtexts() {
|
|||
NUM="$(
|
||||
echo "$TEXTDATA" |
|
||||
grep sms.content.number |
|
||||
sed -E 's/^sms\.content\.number\s+:\s+[+]?//'
|
||||
sed -E 's/^sms\.content\.number\s+:\s+//'
|
||||
)"
|
||||
TIME="$(echo "$TEXTDATA" | grep sms.properties.timestamp | sed -E 's/^sms\.properties\.timestamp\s+:\s+//')"
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ sendtextmenu() {
|
|||
awk NF |
|
||||
menu sxmo_dmenu_with_kb.sh -p "Number" -fn "Terminus-20" -l 10 -c -i |
|
||||
cut -d: -f1 |
|
||||
tr -d -- '-+ '
|
||||
tr -d -- '- '
|
||||
)"
|
||||
echo "$NUMBER" | grep -E "^Cancel$" && exit 1
|
||||
echo "$NUMBER" | grep -qE '^[+0-9]+$' || err "That doesn't seem like a valid number"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue