From e15bdf9a2755641215dfb6c2d55ef22f748769b0 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 19 Oct 2016 23:45:03 +0300 Subject: [PATCH] limit jobid range and clean up existing jobids --- steam/client/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 8845892..460163e 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -265,7 +265,8 @@ class SteamClient(CMClient, BuiltinBase): (message,) = resp """ - jobid = self.current_jobid = (self.current_jobid + 1) % 4294967295 + jobid = self.current_jobid = ((self.current_jobid + 1) % 10000) or 1 + self.remove_all_listeners('job_%d' % jobid) if message.proto: message.header.jobid_source = jobid