prioritse ssh
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
BradBot_1 2023-02-23 19:38:20 +00:00
parent 80e27f4f42
commit 3679dbe8b8

View file

@ -85,7 +85,7 @@ createServer(parseInt(env["PORT"]||"3000"), async (webhookId: string, webhookDat
const forward: Forward|null = getForwardByWebhook(webhookId);
if (forward == null) return;
if (!webhookData.hasOwnProperty("repository")) return;
const url: any = webhookData.repository.clone_url || webhookData.repository.ssh_url || webhookData.repository.html_url;
const url: any = webhookData.repository.ssh_url || webhookData.repository.clone_url || webhookData.repository.html_url;
if (typeof url !== "string" || forward.origin !== url) {
console.log("[VAL] Invalid webhook origin!");
return;