From 61e83a300b7bba39d4cbd63fd3c1b21389d53e58 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Sat, 5 Apr 2025 11:51:01 +0200 Subject: [PATCH] Clients: stop updating datapackage in persistent_storage (#4799) Still uses things that are in there but stops writing to it. --- CommonClient.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/CommonClient.py b/CommonClient.py index bf4b70eb..b622fb93 100644 --- a/CommonClient.py +++ b/CommonClient.py @@ -625,9 +625,6 @@ class CommonContext: def consume_network_data_package(self, data_package: dict): self.update_data_package(data_package) - current_cache = Utils.persistent_load().get("datapackage", {}).get("games", {}) - current_cache.update(data_package["games"]) - Utils.persistent_store("datapackage", "games", current_cache) logger.info(f"Got new ID/Name DataPackage for {', '.join(data_package['games'])}") for game, game_data in data_package["games"].items(): Utils.store_data_package_for_checksum(game, game_data)