From cf6d923670bbfe609685a0158e3562b3bce7eddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20I=C3=B1iguez=20Goia?= Date: Mon, 20 Apr 2020 18:19:49 +0200 Subject: [PATCH] UI: fixed displaying remote statistics --- ui/opensnitch/service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/opensnitch/service.py b/ui/opensnitch/service.py index 73484ebe06..3a34be0289 100644 --- a/ui/opensnitch/service.py +++ b/ui/opensnitch/service.py @@ -323,6 +323,8 @@ def Ping(self, request, context): with self._remote_lock: _, addr, _ = context.peer().split(':') self._populate_stats(self._db, addr, request.stats) + self._stats_dialog.update(request.stats) + # XXX: disable this option for now #if addr in self._remote_stats: # self._remote_stats[addr].update(request.stats)