From e05858668000054aa27741dff3de4871e4335c30 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 25 Mar 2021 15:31:50 -0400 Subject: [PATCH] set steam id when email auth needed --- src/steamapi.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/steamapi.rs b/src/steamapi.rs index e1a021a..a98e8eb 100644 --- a/src/steamapi.rs +++ b/src/steamapi.rs @@ -192,6 +192,7 @@ impl UserLogin { } if login_resp.emailauth_needed { + self.steam_id = login_resp.emailsteamid; return LoginResult::NeedEmail; }