1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-29 03:41:59 +02:00

Merge branch 'main' of github.com:binwiederhier/ntfy

This commit is contained in:
Philipp Heckel 2022-10-21 10:33:50 -04:00
commit 1d6b792197

View file

@ -90,6 +90,14 @@ const PublishDialog = (props) => {
setMessage(props.message); setMessage(props.message);
}, [props.message]); }, [props.message]);
const updateBaseUrl = (newVal) => {
if (validUrl(newVal)) {
setBaseUrl(newVal.replace(/\/$/, '')); // strip traililng slash after https?://
} else {
setBaseUrl(newVal);
}
};
const handleSubmit = async () => { const handleSubmit = async () => {
const url = new URL(topicUrl(baseUrl, topic)); const url = new URL(topicUrl(baseUrl, topic));
if (title.trim()) { if (title.trim()) {
@ -242,7 +250,7 @@ const PublishDialog = (props) => {
label={t("publish_dialog_base_url_label")} label={t("publish_dialog_base_url_label")}
placeholder={t("publish_dialog_base_url_placeholder")} placeholder={t("publish_dialog_base_url_placeholder")}
value={baseUrl} value={baseUrl}
onChange={ev => setBaseUrl(ev.target.value)} onChange={ev => updateBaseUrl(ev.target.value)}
disabled={disabled} disabled={disabled}
type="url" type="url"
variant="standard" variant="standard"