mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-07 07:33:52 +02:00
Added login email pattern to cloud password data.
This commit is contained in:
parent
9a4b73b942
commit
8d06243b57
2 changed files with 3 additions and 0 deletions
|
@ -315,6 +315,8 @@ CloudPasswordState ParseCloudPasswordState(
|
|||
ParseSecureSecretAlgo(data.vnew_secure_algo()));
|
||||
result.unconfirmedPattern = qs(
|
||||
data.vemail_unconfirmed_pattern().value_or_empty());
|
||||
result.loginEmailPattern = qs(
|
||||
data.vlogin_email_pattern().value_or_empty());
|
||||
result.pendingResetDate = data.vpending_reset_date().value_or_empty();
|
||||
|
||||
result.outdatedClient = [&] {
|
||||
|
|
|
@ -135,6 +135,7 @@ struct CloudPasswordState {
|
|||
bool outdatedClient = false;
|
||||
QString hint;
|
||||
QString unconfirmedPattern;
|
||||
QString loginEmailPattern;
|
||||
TimeId pendingResetDate = 0;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue