Skip to content

Commit

Permalink
πŸ› Fix duplicated content fingerprint on update iscn
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Feb 26, 2024
1 parent c5e8bc9 commit 1872b85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/edit/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@ export default class EditIscnPage extends Vue {
description: this.description,
keywords: this.contentMetadata.keywords,
url: this.contentMetadata.url,
contentFingerprints: [
contentFingerprints: Array.from(new Set([
...this.contentFingerprints,
...this.customContentFingerprints,
],
])),
stakeholders: this.iscnRecord?.stakeholders,
type: this.contentMetadata['@type'],
usageInfo: this.contentMetadata.usageInfo,
Expand Down

0 comments on commit 1872b85

Please sign in to comment.