FIX: not registered forward

This commit is contained in:
BradBot_1 2023-02-23 01:39:33 +00:00
parent f8bf60ee91
commit 06fe17115b

View file

@ -43,5 +43,7 @@ export function createForward(origin: string, webhook: string|undefined): Forwar
webhook = generateRandomWebhookId();
} while (getForwardByWebhook(webhook) != null);
}
return new Forward(webhook, origin);
const forward = new Forward(webhook, origin);
known_forwards.push(forward);
return forward;
};