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 21, 2024
1 parent 1173265 commit 08f90d9
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 @@ -338,10 +338,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 08f90d9

Please sign in to comment.