You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
The kernel is currently destructuring the response from the builder-server as if it was the same object that is store in the catalyst but there are a few differences when it comes to Emotes.
Tech details:
When trying to access the emoteDataV0, it always get undefined so the Emote data is not loaded correctly. const { id, data, rarity, i18n, thumbnail, description, emoteDataV0 } = v2Wearable
The builder-ser ver replies with an Item instance, that will have a type prop. Let's use the type prop to detect when it's an emote and read the emoteDataV0 from the right place.
The text was updated successfully, but these errors were encountered:
Problem:
The kernel is currently destructuring the response from the builder-server as if it was the same object that is store in the catalyst but there are a few differences when it comes to Emotes.
Tech details:
When trying to access the
emoteDataV0
, it always getundefined
so the Emote data is not loaded correctly.const { id, data, rarity, i18n, thumbnail, description, emoteDataV0 } = v2Wearable
The builder-ser ver replies with an
Item
instance, that will have atype
prop. Let's use thetype
prop to detect when it's an emote and read theemoteDataV0
from the right place.The text was updated successfully, but these errors were encountered: