Skip to content

Commit

Permalink
Update missing mailto: in some snaps contact metadata (#872)
Browse files Browse the repository at this point in the history
### PR Description

#### What is the current state of things and why does it need to change?
The contact fields for some snaps in the `registry.json` file currently
contain email addresses without the `mailto:` prefix. This could cause
inconsistencies or issues where the correct format (with `mailto:`) is
expected.

#### What is the solution your changes offer and how does it work?
This PR updates the `contact` field for the affected snaps to include
the `mailto:` prefix, ensuring all email addresses are in the proper
format for links and interactions. Specifically, three snaps have been
updated:

- **Qtum Snap**: Changed `"[email protected]"` to
`"mailto:[email protected]"`.
- **Aeternity Snap**: Changed `"[email protected]"` to
`"mailto:[email protected]"`.
- **TokenScript Snap**: Changed `"[email protected]"` to
`"mailto:[email protected]"`.

#### Are there any issues or other links reviewers should consult to
understand this pull request better?
No related issues were filed, but these changes are necessary for
consistent contact formatting across snaps.

Co-authored-by: Frederik Bolding <[email protected]>
  • Loading branch information
khanti42 and FrederikBolding authored Oct 15, 2024
1 parent 364f463 commit 34c02cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@
],
"category": "interoperability",
"support": {
"contact": "[email protected]",
"contact": "mailto:[email protected]",
"faq": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-faq",
"knowledgeBase": "https://github.com/qtumproject/qtum-extension-wallet?tab=readme-ov-file#qtum-wallet-knowledge-doc"
},
Expand Down Expand Up @@ -2078,7 +2078,7 @@
],
"category": "interoperability",
"support": {
"contact": "[email protected]"
"contact": "mailto:[email protected]"
},
"sourceCode": "https://github.com/4-point-0/aeternity-snap"
},
Expand Down Expand Up @@ -3612,7 +3612,7 @@
"support": {
"knowledgeBase": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/README.md",
"faq": "https://github.com/TokenScript-Framework/token-kit/blob/main/packages/tapp-snap/FAQ.md",
"contact": "[email protected]"
"contact": "mailto:[email protected]"
},
"sourceCode": "https://github.com/TokenScript-Framework/token-kit/tree/main/packages/tapp-snap",
"screenshots": [
Expand Down

0 comments on commit 34c02cc

Please sign in to comment.