mirror of https://github.com/procxx/kepka.git
Don't display errors list in passport.
This commit is contained in:
parent
39b0d9e46f
commit
7be1f16313
|
@ -1665,6 +1665,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_passport_error_cant_read" = "Can't read this file. Please choose an image.";
|
||||
"lng_passport_bad_name" = "Please use latin characters only.";
|
||||
"lng_passport_wait_upload" = "Please wait while upload is finished.";
|
||||
"lng_passport_fix_errors" = "Please correct errors.";
|
||||
"lng_passport_app_out_of_date" = "Sorry, your Telegram app is out of date and can't handle this request. Please update Telegram.";
|
||||
|
||||
"lng_export_title" = "Export Personal Data";
|
||||
|
|
|
@ -263,7 +263,9 @@ ScopeRow ComputeScopeRow(const Scope &scope) {
|
|||
};
|
||||
ranges::for_each(scope.documents, addValueErrors);
|
||||
addValueErrors(scope.fields);
|
||||
row.error = errors.join('\n');
|
||||
if (!errors.isEmpty()) {
|
||||
row.error = lang(lng_passport_fix_errors);// errors.join('\n');
|
||||
}
|
||||
if (row.error.isEmpty()
|
||||
&& row.ready.isEmpty()
|
||||
&& scope.type == Scope::Type::Identity
|
||||
|
|
Loading…
Reference in New Issue