From b0fe713e203a0c8f9891fd6d596ed8f3b3995ebe Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Mon, 21 Jul 2025 14:19:51 +0200 Subject: [PATCH] FIx crashing on apply due to invalid variable name and key when checking if discord RPC is on. --- menus/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menus/settings.py b/menus/settings.py index 0d3f7a2..0421a3b 100644 --- a/menus/settings.py +++ b/menus/settings.py @@ -148,7 +148,7 @@ class Settings(FocusView): window.vsync = self.data['vsync'] - if self.settings_dict['discord_pypresence_client']: + if self.data['discord_rpc']: if isinstance(self.pypresence_client, FakePyPresence): # the user has enabled pypresence_client in the settings in this session. start_time = copy.deepcopy(self.pypresence_client.start_time) self.pypresence_client.close()