Don't display errors list in passport.

This commit is contained in:
John Preston 2018-07-10 23:25:40 +03:00
parent 39b0d9e46f
commit 7be1f16313
2 changed files with 4 additions and 1 deletions

View File

@ -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";

View File

@ -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