Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 070bb34

Browse files
author
Paul Von Schrottky
authored
Merge pull request #802 from wordpress-mobile/revert/sms-message-fix
Revert change to fix 2FA issue
2 parents 8f7f24d + 5e4a6d3 commit 070bb34

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ _None._
3030
3131
-->
3232

33+
## 7.3.1
34+
35+
### Bug Fixes
36+
37+
- Fix a regression where app-based 2FA stopped working on accounts with passkeys enabled
38+
39+
3340
## 7.3.0
3441

3542
### New Features

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PODS:
99
- SVProgressHUD (2.2.5)
1010
- SwiftLint (0.49.1)
1111
- UIDeviceIdentifier (2.3.0)
12-
- WordPressAuthenticator (7.3.0):
12+
- WordPressAuthenticator (7.3.1-beta.1):
1313
- Gridicons (~> 1.0)
1414
- "NSURL+IDN (= 0.4)"
1515
- SVProgressHUD (~> 2.2.5)
@@ -71,7 +71,7 @@ SPEC CHECKSUMS:
7171
SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6
7272
SwiftLint: 32ee33ded0636d0905ef6911b2b67bbaeeedafa5
7373
UIDeviceIdentifier: 442b65b4ff1832d4ca9c2a157815cb29ad981b17
74-
WordPressAuthenticator: 16f6560a06008cc502b92c85e76eaaa90248c12b
74+
WordPressAuthenticator: e8f06f2162972d652770247ed79572f5c276b383
7575
WordPressKit: a5432c2e3c2247c2b83b3ebf0acec75ae00782ef
7676
WordPressShared: 0aa459e5257a77184db87805a998f447443c9706
7777
WordPressUI: 1cf47a3b78154faf69caa18569ee7ece1e510fa0

WordPressAuthenticator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pod::Spec.new do |s|
44
s.name = 'WordPressAuthenticator'
5-
s.version = '7.3.0'
5+
s.version = '7.3.1-beta.1'
66

77
s.summary = 'WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps.'
88
s.description = <<-DESC

WordPressAuthenticator/Unified Auth/View Related/2FA/TwoFAViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ private extension TwoFAViewController {
193193

194194
let (authType, nonce) = nonceInfo.authTypeAndNonce(for: loginFields.multifactorCode)
195195
if nonce.isEmpty {
196-
return displayError(message: LocalizedText.bad2FAMessage, moveVoiceOverFocus: true)
196+
return validateFormAndLogin()
197197
}
198198

199199
loginWithNonce(nonce, authType: authType, code: loginFields.multifactorCode)

0 commit comments

Comments
 (0)