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
Three digits for verification number were used until 1. january 1954
And then there is the following condition check:
iflen(id) ==3:
return'%s'%value
This means, that birth numbers that were issued after 1954.1.1 but don't have fourth digit in it will not be validated. But in fact they are invalid. For example:
Birth number: 600110/0006
This one passes the validation, but if I remove the last digit it will still pass the validation, but it should not because it has to have control digit.
As stated in the source code (here)
And then there is the following condition check:
This means, that birth numbers that were issued after 1954.1.1 but don't have fourth digit in it will not be validated. But in fact they are invalid. For example:
Birth number: 600110/0006
This one passes the validation, but if I remove the last digit it will still pass the validation, but it should not because it has to have control digit.
PR: #316
The text was updated successfully, but these errors were encountered: