Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gajim/gtk/avatar.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/gajim/gtk/avatar.py b/gajim/gtk/avatar.py
index 504ce6e88..b25419426 100644
--- a/gajim/gtk/avatar.py
+++ b/gajim/gtk/avatar.py
@@ -470,13 +470,6 @@ class AvatarStorage(metaclass=Singleton):
transport_icon: str | None = None,
style: str = 'circle') -> cairo.ImageSurface:
- if transport_icon == 'gateway-irc':
- surface = load_icon_surface('gajim-agent-irc', size, scale)
- assert surface is not None
- surface = add_transport_to_avatar(surface, transport_icon)
- self._cache[jid][(size, scale, None, transport_icon)] = surface
- return surface
-
if not default:
surface = self._cache[jid].get((size, scale, None, transport_icon))
if surface is not None: