Description:
When opening a newly created (empty) topic in the ntfy web interface (i.e., a topic that hasn't yet received any notifications), the page currently displays a cURL example like this:
$ curl -d "Hello" ntfy.sh/my-topic
To ensure the URL is correctly formatted, we need to prepend "https://" to the cURL example. The updated example should look like this:
$ curl -d "Hello" https://ntfy.sh/my-topic
This change will ensure that users can directly copy and paste the cURL example without needing to manually add "https://" to the URL, improving the usability of the interface.
Description:
When opening a newly created (empty) topic in the
ntfyweb interface (i.e., a topic that hasn't yet received any notifications), the page currently displays a cURL example like this:$ curl -d "Hello" ntfy.sh/my-topicTo ensure the URL is correctly formatted, we need to prepend "https://" to the cURL example. The updated example should look like this:
This change will ensure that users can directly copy and paste the cURL example without needing to manually add "https://" to the URL, improving the usability of the interface.