Allow 6-digit support phone numbers.

This commit is contained in:
John Preston 2019-07-04 14:00:40 +02:00
parent f1518af8b3
commit 58d4b763b6
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ bool IsValidPhone(QString phone) {
|| (phone.startsWith(qsl("42"))
&& (phone.length() == 2
|| phone.length() == 5
|| phone.length() == 6
|| phone == qsl("4242")));
}