瀏覽代碼

only call login function when the login was successful

stefan 9 月之前
父節點
當前提交
8ddd166b3e
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/shellmatta_auth.c

+ 1 - 2
src/shellmatta_auth.c

@@ -149,9 +149,8 @@ void checkPassword(shellmatta_handle_t handle, uint32_t userId, char *password)
     else
     {
         shellmatta_write(handle, "login successful\r\n", 18);
+        (void)shellmatta_auth_login(handle, approvedUserId);
     }
-
-    (void)shellmatta_auth_login(handle, approvedUserId);
 }
 
 /**