|
@@ -164,7 +164,7 @@ class User extends Singleton {
|
|
|
$objUserBindInfo = new TableHelper('user_bind_info', 'dw_chat');
|
|
|
|
|
|
$user = $objUser->getRow(['user_id' => $user_id]);
|
|
|
- if ($user['first_type'] == $type && $user['first_account'] != $account) {
|
|
|
+ if ($user['first_type'] == $type && strtolower($user['first_account']) != strtolower($account)) {
|
|
|
Response::error(CODE_NORMAL_ERROR, "this account {$type} must be bind {$user['first_account']}");
|
|
|
}
|
|
|
|