Skip to content

Commit

Permalink
Fix authorization flow
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-nadymov committed Jul 23, 2020
1 parent f791b26 commit 6bbfe23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stores/ApplicationStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class ApplicationStore extends EventEmitter {
} else {
if (
this.authorizationState &&
this.authorizationState['@type'] === 'authorizationStateWaitPhoneNumber'
(this.authorizationState['@type'] === 'authorizationStateWaitPhoneNumber' || this.authorizationState['@type'] === 'authorizationStateWaitOtherDeviceConfirmation')
) {
this.setPhoneNumber(phone);
} else {
Expand Down

0 comments on commit 6bbfe23

Please sign in to comment.