The portalsessionhandler was storing the latest command time on itself rather than on the session. Should fix getting logged on despite being active.

This commit is contained in:
Griatch 2015-03-14 16:00:55 +01:00
parent b30e766047
commit 3c2e44346a

View file

@ -290,7 +290,7 @@ class PortalSessionHandler(SessionHandler):
serialized before passed on.
"""
self.cmd_last = time()
session.cmd_last = time()
self.portal.amp_protocol.call_remote_MsgPortal2Server(session.sessid,
msg=text,
data=kwargs)