[Solved] DBL Vote Webhook Error

Hello there! I was thinking about using DBL’s webhook vote feature but for some reason, when I test it from the website, it doesn’t send anything in the console.

const DBL = require("dblapi.js")
const http = require("http")
const express = require("express");
const app = express();
const server = require('http').createServer(app);
const listener = server.listen(process.env.PORT, function() {
  console.log('Deployed successfully!');
});
setInterval(() => {
  http.get(`http://${process.env.PROJECT_DOMAIN}.glitch.me/`);
}, 280000);
  const dbl = new DBL(process.env.DBL, { webhookServer: listener, webhookAuth: process.env.PASS }, bot);
  
  dbl.webhook.on('ready', hook => {
    console.log(`Webhook running at http://${hook.hostname}:${hook.port}${hook.path}`);
  });
  dbl.webhook.on('vote', vote => {
    console.log(`User ID ${vote.user} has voted!`)
  });

console says: Webhook running at http://0.0.0.0:0/dblwebhook

Also, here’s a demo version that I made, that it doesn’t include the tokens for security reasons.
Project: https://glitch.com/edit/#!/dbl-testing

Thanks in advance,
TehPig_YT

Notice: Problem has been solved.

how? i am having the same issue…