Skip to content

Commit

Permalink
fix ranking board exception handle
Browse files Browse the repository at this point in the history
  • Loading branch information
jonny-jeahyunchoi committed Dec 17, 2024
1 parent 65419cc commit 3f2affa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nekoyume/Assets/_Scripts/UI/Widget/Popup/RankPopup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ private void SetEquipmentScroll(ItemSubType type)
var states = States.Instance;
var rankingInfos = SharedModel.EquipmentRankingInfosMap[type];
if (SharedModel.AgentEquipmentRankingInfos
.TryGetValue(states.CurrentAvatarKey, out var equipmentRankingMap))
.TryGetValue(states.CurrentAvatarKey, out var equipmentRankingMap)
&& equipmentRankingMap.TryGetValue(type, out var rankingInfo))
{
var rankingInfo = equipmentRankingMap[type];
myInfoCell.SetData(rankingInfo);
}
else
Expand Down

0 comments on commit 3f2affa

Please sign in to comment.