Skip to content

Commit 21cbd59

Browse files
tux-mindmajd
andauthored
Fix initial authentication attempt with 2FA (#331)
I though that the first attempt would not contain the 2fa code, but I was wrong. This fixes the authentication when using 2fa enabled accounts. closes #326 Co-authored-by: Majd Alfhaily <[email protected]>
1 parent f3c9076 commit 21cbd59

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

pkg/appstore/appstore_login.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,7 @@ func (t *appstore) login(email, password, authCode, guid string) (Account, error
7373
retry := true
7474

7575
for attempt := 1; retry && attempt <= 4; attempt++ {
76-
ac := authCode
77-
if attempt == 1 {
78-
ac = ""
79-
}
80-
81-
request := t.loginRequest(email, password, ac, guid, attempt)
76+
request := t.loginRequest(email, password, authCode, guid, attempt)
8277
request.URL, _ = util.IfEmpty(redirect, request.URL), ""
8378
res, err = t.loginClient.Send(request)
8479

0 commit comments

Comments
 (0)