Skip to content

Commit

Permalink
fix: Remove download content check
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Mar 25, 2024
1 parent 042c594 commit f14bca8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"classnames": "^2.3.1",
"connected-react-router": "^6.9.1",
"date-fns": "^2.23.0",
"dcl-catalyst-client": "^21.2.0",
"dcl-catalyst-client": "^21.6.0",
"dcl-catalyst-commons": "^9.0.1",
"decentraland-connect": "^6.2.0",
"decentraland-crypto-fetch": "^1.0.3",
Expand Down Expand Up @@ -122,4 +122,4 @@
"type": "git",
"url": "https://github.com/decentraland/marketplace.git"
}
}
}
2 changes: 1 addition & 1 deletion webapp/src/lib/asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const getSmartWearableSceneContent = async (urn: string): Promise<Record<
const scene = wearableEntity[0].content?.find(entity => entity.file.endsWith(SCENE_PATH))

if (scene) {
const wearableScene = await contentClient.downloadContent(scene.hash)
const wearableScene = await contentClient.downloadContent(scene.hash, { avoidChecks: true })

const enc = new TextDecoder('utf-8')
const data = new Uint8Array(wearableScene)
Expand Down

0 comments on commit f14bca8

Please sign in to comment.