mirror of https://github.com/procxx/kepka.git
Allow 6-digit support phone numbers.
This commit is contained in:
parent
f1518af8b3
commit
58d4b763b6
|
@ -52,6 +52,7 @@ bool IsValidPhone(QString phone) {
|
||||||
|| (phone.startsWith(qsl("42"))
|
|| (phone.startsWith(qsl("42"))
|
||||||
&& (phone.length() == 2
|
&& (phone.length() == 2
|
||||||
|| phone.length() == 5
|
|| phone.length() == 5
|
||||||
|
|| phone.length() == 6
|
||||||
|| phone == qsl("4242")));
|
|| phone == qsl("4242")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue