We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67a52da commit 6627837Copy full SHA for 6627837
1 file changed
src/components/Indexer/processor.ts
@@ -785,10 +785,7 @@ export class MetadataStateEventProcessor extends BaseEventProcessor {
785
// in case their state changes back to active.
786
ddoInstance.getDDOData().indexedMetadata.nft.state = metadataState
787
if (shortVersion) {
788
- ddoInstance.getDDOData().id = shortVersion.id
789
- ddoInstance.getDDOData().chainId = shortVersion.chainId
790
- ddoInstance.getDDOData().nftAddress = shortVersion.nftAddress
791
- ddoInstance.getDDOData().indexedMetadata = shortVersion.indexedMetadata
+ Object.assign(ddoInstance.getDDOData(), shortVersion)
792
}
793
} else {
794
// Still update until we validate and polish schemas for DDO.
0 commit comments