fix leak that was killing performance over long periods

This commit is contained in:
CyberPhoenix90 2021-12-30 15:05:09 +01:00
parent 12bc10ea1f
commit 07e3117e22

View file

@ -26,7 +26,10 @@ export default class Utils {
/** Function that can be used to wait for a condition before returning. */
async wait<T>(condition: () => T | false, timeout = 5000, check = 100): Promise<T> {
return await new Promise((resolve, reject) => {
setTimeout(() => reject("TIMEOUT"), timeout);
setTimeout(() => {
clearInterval(interval);
reject("TIMEOUT")
}, timeout);
const intervalCheck = () => {
const result = condition();