From 2b471e019ce117e4be9eeb38e1911c31bd888b20 Mon Sep 17 00:00:00 2001 From: Archiver <95448029+RobloxArchiver@users.noreply.github.com> Date: Wed, 21 Dec 2022 02:11:13 -0500 Subject: [PATCH] Fix for Error --- ui/modules/RemoteSpy.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index b179ca60..7387db1b 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -461,8 +461,10 @@ function Log.incrementCalls(log, callInfo) local remote = log.Remote local calls = remote.Calls - buttonInstance.Calls.Text = (calls < 10000 and calls) or "..." - + if buttonInstance.Calls then + buttonInstance.Calls.Text = (calls < 10000 and calls) or "..." + end + log:Adjust() if selected.remoteLog == log then