Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ass/commit/c917a35aa6b12ba3f00e3de6587ad598e6019f73 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from tycrek/fixed-webhooks-woops

pull/73/head
Josh Moore 4 years ago committed by GitHub
commit c917a35aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -110,7 +110,7 @@ router.post('/', (req, res, next) => {
log.debug('Upload response sent');
// After we have sent the user the response, also send a Webhook to Discord (if headers are present)
if (req.headers['x-ass-webhook-client'] && req.headers['x-ass-webhook-token']) {
if (req.headers['x-ass-webhook-url']) {
// Build the webhook
const hook = new Webhook(req.headers['x-ass-webhook-url']);

Loading…
Cancel
Save