From 4f05a001fbd25e852ffca819346d07a70e1d0dd3 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 11 Oct 2024 14:58:05 -0400 Subject: fix another toString --- frontend/src/toaster.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/toaster.tsx b/frontend/src/toaster.tsx index 54c0d7fb..bcf16f11 100644 --- a/frontend/src/toaster.tsx +++ b/frontend/src/toaster.tsx @@ -28,7 +28,7 @@ class Toaster extends Logger { window.__TOASTER_INSTANCE?.deinit?.(); window.__TOASTER_INSTANCE = this; - const ValveToastRenderer = findModuleExport((e) => e?.toString()?.includes(`controller:"notification",method:`)); + const ValveToastRenderer = findModuleExport((e) => e?.toString?.()?.includes(`controller:"notification",method:`)); // TODO find a way to undo this if possible? const patchedRenderer = injectFCTrampoline(ValveToastRenderer); this.toastPatch = replacePatch(patchedRenderer, 'component', (args: any[]) => { -- cgit v1.2.3