Skip to content
Snippets Groups Projects
Commit f6e2590e authored by nicfit's avatar nicfit
Browse files

Fixed the previous TB, but this time at another part of the code

parent 3f7217ae
No related branches found
No related tags found
No related merge requests found
......@@ -405,12 +405,15 @@ class Interface:
show_notification = True
if show_notification:
transport_name = gajim.get_transport_name_from_jid(jid)
img = os.path.join(gajim.DATA_DIR, 'iconsets',
'transports', transport_name, '48x48', 'online.png')
if not os.path.isfile(img):
img = None
if transport_name:
img = os.path.join(gajim.DATA_DIR, 'iconsets',
'transports', transport_name, '48x48',
'online.png')
if not img or not os.path.isfile(img):
iconset = gajim.config.get('iconset')
img = os.path.join(gajim.DATA_DIR, 'iconsets', iconset,
'48x48', 'online.png')
img = os.path.join(gajim.DATA_DIR, 'iconsets',
iconset, '48x48', 'online.png')
path = gtkgui_helpers.get_path_to_generic_or_avatar(img,
jid = jid, suffix = '_notif_size_colored.png')
notify.notify(_('Contact Signed In'), jid, account,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment