diff options
| author | grunfink <grunfink@comam.es> | 2025-05-30 19:59:40 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-05-30 19:59:40 +0200 |
| commit | c8848f6e9f8e9fd9d17290b1ef301d3bf7beccb4 (patch) | |
| tree | c60522d8933a3e9cece47f571d1a78e578180625 /data.c | |
| parent | 6a233d5ba051f8018e819c0dcf5217aba66558a2 (diff) | |
More webhook checks.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3529,7 +3529,7 @@ void enqueue_notify_webhook(snac *user, const xs_dict *noti, int retries) { const char *webhook = xs_dict_get(user->config, "notify_webhook"); - if (xs_is_string(webhook) && *webhook) { + if (xs_is_string(webhook) && xs_match(webhook, "https://*|http://*")) { /** **/ xs *msg = xs_dup(noti); /* add more data */ |