로그인 버그 수정
This commit is contained in:
parent
828664196e
commit
06dccabf0b
|
|
@ -27,8 +27,9 @@ namespace Server.Service
|
||||||
|
|
||||||
if (user != null)
|
if (user != null)
|
||||||
{
|
{
|
||||||
deckUnitInfoList = Statics.deckUnitInfoSQL.Select();
|
deckUnitInfoList = Statics.deckUnitInfoSQL.SelectUid(user.id);
|
||||||
deckInfoList = Statics.deckInfoSQL.Select();
|
deckInfoList = Statics.deckInfoSQL.SelectUid(user.id);
|
||||||
|
equipmentList = Statics.equipmentrSQL.SelectUid(user.id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -37,7 +38,6 @@ namespace Server.Service
|
||||||
user = Statics.userSQL.SelectUuid(req.uuid);
|
user = Statics.userSQL.SelectUuid(req.uuid);
|
||||||
|
|
||||||
deckUnitInfoList = Statics.deckUnitInfoSQL.SelectUid(user.id);
|
deckUnitInfoList = Statics.deckUnitInfoSQL.SelectUid(user.id);
|
||||||
//추후 이것을 1개만 보낼것.
|
|
||||||
deckInfoList = Statics.deckInfoSQL.SelectUid(user.id);
|
deckInfoList = Statics.deckInfoSQL.SelectUid(user.id);
|
||||||
equipmentList = Statics.equipmentrSQL.SelectUid(user.id);
|
equipmentList = Statics.equipmentrSQL.SelectUid(user.id);
|
||||||
}
|
}
|
||||||
|
|
@ -115,8 +115,6 @@ namespace Server.Service
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return makeResp(user, dynamicDataList, deckUnitInfoList, deckInfoList, equipmentList);
|
return makeResp(user, dynamicDataList, deckUnitInfoList, deckInfoList, equipmentList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue