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 0ddb4f6 commit a718025Copy full SHA for a718025
packages/syndicator-mastodon/index.js
@@ -74,7 +74,10 @@ export default class MastodonSyndicator {
74
type: "text",
75
name: "url",
76
message: "What is the URL of your Mastodon server?",
77
- description: "i.e. https://mastodon.social",
+ validate: (value) =>
78
+ URL.canParse(value)
79
+ ? true
80
+ : "Enter a valid URL, for example https://mastodon.social",
81
},
82
{
83
0 commit comments