We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a8f13d + f69d64d commit 56b456aCopy full SHA for 56b456a
ui/opensnitch/dialogs/stats.py
@@ -1679,6 +1679,11 @@ def _cb_proc_details_clicked(self):
1679
def _cb_notification_callback(self, node_addr, reply):
1680
if reply.id in self._notifications_sent:
1681
noti = self._notifications_sent[reply.id]
1682
+
1683
+ # convert dictionary sent from _cb_fw_table_rows_reordered()
1684
+ if isinstance(noti, dict) and isinstance(noti["notif"].type, int):
1685
+ noti = noti["notif"]
1686
1687
if noti.type == ui_pb2.TASK_START and reply.code != ui_pb2.ERROR:
1688
noti_data = json.loads(noti.data)
1689
if noti_data['name'] == "node-monitor":
0 commit comments