FIX: not registered forward
This commit is contained in:
parent
f8bf60ee91
commit
06fe17115b
|
@ -43,5 +43,7 @@ export function createForward(origin: string, webhook: string|undefined): Forwar
|
||||||
webhook = generateRandomWebhookId();
|
webhook = generateRandomWebhookId();
|
||||||
} while (getForwardByWebhook(webhook) != null);
|
} while (getForwardByWebhook(webhook) != null);
|
||||||
}
|
}
|
||||||
return new Forward(webhook, origin);
|
const forward = new Forward(webhook, origin);
|
||||||
|
known_forwards.push(forward);
|
||||||
|
return forward;
|
||||||
};
|
};
|
Loading…
Reference in a new issue