From f6f7bf3d1fd8f312e146823f09061f6077e4b677 Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Wed, 9 Jul 2025 13:04:28 -0600 Subject: [PATCH] userinfo: these were never awaited guh --- src/modules/utility/userinfo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/utility/userinfo.js b/src/modules/utility/userinfo.js index 724f8fa..36823da 100644 --- a/src/modules/utility/userinfo.js +++ b/src/modules/utility/userinfo.js @@ -108,14 +108,14 @@ userinfo.callback = async function (msg, line) { if (Date.now() > vencordFetch) { try { - fetchVencordData(); + await fetchVencordData(); } catch { // noop } } if (Date.now() > questsFetch) { try { - fetchQuestData(); + await fetchQuestData(); } catch { // noop }