use jabber iconset when no iconset exists for a transport. fixes #3604

This commit is contained in:
Yann Leboulanger 2007-12-20 19:43:24 +00:00
parent 4bedeec964
commit f1a2f0966d
1 changed files with 2 additions and 0 deletions

View File

@ -1092,3 +1092,5 @@ def get_transport_path(transport):
elif os.path.isdir(os.path.join(gajim.MY_ICONSETS_PATH, 'transports',
transport)):
return os.path.join(gajim.MY_ICONSETS_PATH, 'transports', transport)
# No transport folder found, use default jabber one
return get_iconset_path(gajim.config.get('iconset'))