# HG changeset patch # User Goffi # Date 1447792143 -3600 # Node ID ec48b35309dcf845ccf003d96ab8a0cb45d5c93b # Parent 5b24d6bf5d157ecf7fe43572bc97be57d793cc23 jp: use the new actionsGet method diff -r 5b24d6bf5d15 -r ec48b35309dc frontends/src/jp/base.py --- a/frontends/src/jp/base.py Tue Nov 17 21:28:58 2015 +0100 +++ b/frontends/src/jp/base.py Tue Nov 17 21:29:03 2015 +0100 @@ -577,3 +577,6 @@ self.need_loop = True super(CommandAnswering, self).connected() self.host.bridge.register("actionNew", self.onActionNew) + actions = self.host.bridge.actionsGet(self.profile) + for action_data, action_id, security_limit in actions: + self.onActionNew(action_data, action_id, security_limit, self.profile)