Mercurial > libervia-backend
comparison sat_frontends/jp/base.py @ 4042:877145b4ba01
core: don't use `meta_` prefix anymore for `action_extra` in `action_new` signal.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 15 May 2023 16:20:50 +0200 |
parents | 2594e1951cf7 |
children | 4b842c1fb686 |
comparison
equal
deleted
inserted
replaced
4041:2594e1951cf7 | 4042:877145b4ba01 |
---|---|
1396 ) -> None: | 1396 ) -> None: |
1397 if profile != self.profile: | 1397 if profile != self.profile: |
1398 return | 1398 return |
1399 action_data = data_format.deserialise(action_data_s) | 1399 action_data = data_format.deserialise(action_data_s) |
1400 try: | 1400 try: |
1401 action_type = action_data['meta_type'] | 1401 action_type = action_data['type'] |
1402 except KeyError: | 1402 except KeyError: |
1403 try: | 1403 try: |
1404 xml_ui = action_data["xmlui"] | 1404 xml_ui = action_data["xmlui"] |
1405 except KeyError: | 1405 except KeyError: |
1406 pass | 1406 pass |