#Webhooks page not opening

1 messages · Page 1 of 1 (latest)

thick salmon
#

Hey there,

I am using version 1.34.0 and tested on other versions using both local ip and reverse proxy.
I tried from different browsers/devices.

When going to the webhook notification i get the following, I managed to configure it once before but now i get “Oops” page.

I can’t see any error in the log, and this is the section of webhook from the ‘settings.json’

"webhook": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": "'',
"jsonPayload": "”
}

Any idea of how to fix this? I could not find anything online

shy nebula
#

You have mismatched quotations as seen here with syntax highlighting:

"webhook": {
"enabled": false,
"types": 0,
"options": {
"webhookUrl": "'',
"jsonPayload": "”
}
#

Here's the corrected:

"webhook": {
  "enabled": false,
  "types": 0,
  "options": {
    "webhookUrl": "",
    "jsonPayload": ""
  }
}
thick salmon