1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 01:39:44 +01:00

fix send duck standard setting bug in updateSendAsset (#13289)

This commit is contained in:
Alex Donesky 2022-01-13 15:21:20 -06:00 committed by GitHub
parent 4cf5c942aa
commit 269aaa6fb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1434,11 +1434,15 @@ export function updateSendAsset({ type, details }) {
state.send.account.address ?? getSelectedAddress(state),
);
// TODO remove along with migration of isERC721 tokens and stripping away this designation
if (details && details.isERC721 === undefined) {
const updatedAssetDetails = await updateTokenType(details.address);
details.isERC721 = updatedAssetDetails.isERC721;
if (details) {
if (details.isERC721 === undefined) {
const updatedAssetDetails = await updateTokenType(details.address);
details.isERC721 = updatedAssetDetails.isERC721;
}
if (details.standard === undefined) {
details.standard = ERC20;
}
}
details.standard = ERC20;
await dispatch(hideLoadingIndication());
} else if (type === ASSET_TYPES.COLLECTIBLE) {
let isCurrentOwner = true;