From 07711313a23952ad37e6f490dc9924dca6c97cc0 Mon Sep 17 00:00:00 2001 From: Gobot1234 Date: Thu, 29 Dec 2022 02:18:57 +0000 Subject: [PATCH] Make Inventories track the context id they were fetched from --- steam/trade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/trade.py b/steam/trade.py index e668d1c2..c9017f9c 100644 --- a/steam/trade.py +++ b/steam/trade.py @@ -265,7 +265,7 @@ def __init__( self._state = state self.owner = owner """The owner of the inventory.""" - self.app = PartialApp(state, id=app.id, name=app.name) + self.app = PartialApp(state, id=app.id, name=app.name, context_id=app.context_id) """The app the inventory belongs to.""" self._language = language self._update(data)