From d9472d922d48dbb7bc15421efa9e62dfed0cee93 Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 31 Dec 2021 02:44:04 -0600 Subject: Update hypixelCached.ts --- src/hypixelCached.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 26e3dc5..d5b6628 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -71,7 +71,7 @@ function waitForCacheSet(cache: NodeCache, key?: string, value?: string): Promis const listener = (setKey, setValue) => { // we check that the setValue isn't a promise because it's often // set as a promise for this exact function - if (((setKey === key) || (value && setValue === value)) && (!setValue.then)) { + if (((setKey === key) || (value && setValue === value)) && (!setValue?.then)) { cache.removeListener('set', listener) return resolve({ key: setKey, value: setValue }) } -- cgit