Commit e48201dd authored by Julien Muchembled's avatar Julien Muchembled

client: fix passing of data to response handler through Connection.ask

This is another fix to commit 4720ba33.
parent 29fe44e5
...@@ -238,7 +238,7 @@ class Application(object): ...@@ -238,7 +238,7 @@ class Application(object):
_handlePacket(qconn, qpacket, kw, handler) _handlePacket(qconn, qpacket, kw, handler)
break break
if not is_forgotten and qpacket is not None: if not is_forgotten and qpacket is not None:
_handlePacket(qconn, qpacket) _handlePacket(qconn, qpacket, kw)
return self.getHandlerData() return self.getHandlerData()
@profiler_decorator @profiler_decorator
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment