diff --git a/worthless/patcher.py b/worthless/patcher.py index 132d968..dcc4a08 100644 --- a/worthless/patcher.py +++ b/worthless/patcher.py @@ -246,8 +246,8 @@ class Patcher: # Delete old Telemetry.dll on Linux (cAsE sEnsItIvE) if platform.system() == "Linux": - telemetry_path = self._installer.get_game_data_name().joinpath("Plugins/Telemetry.dll") - if telemetry_path.exists() and self._installer.get_game_data_name().joinpath("Plugins/telemetry.dll").exists(): + telemetry_path = Path(self._installer.get_game_data_name()).joinpath("Plugins/Telemetry.dll") + if telemetry_path.exists() and Path(self._installer.get_game_data_name()).joinpath("Plugins/telemetry.dll").exists(): await telemetry_path.unlink() patch_jobs.append(disable_crashreporters())