[blarz] Check is ~/.gajim/iconsets/transports exists before using it. See #3390 and [8555].
This commit is contained in:
parent
2419bd509c
commit
96446f2a9f
|
@ -4439,6 +4439,7 @@ class RosterWindow:
|
|||
# standard transport iconsets are loaded one time in init()
|
||||
t_path = os.path.join(gajim.DATA_DIR, 'iconsets', 'transports')
|
||||
folders = os.listdir(t_path)
|
||||
if os.path.isdir(os.path.join(gajim.MY_ICONSETS_PATH, 'transports')):
|
||||
t_path = os.path.join(gajim.MY_ICONSETS_PATH, 'transports')
|
||||
folders += os.listdir(t_path)
|
||||
for transport in folders:
|
||||
|
@ -5149,6 +5150,7 @@ class RosterWindow:
|
|||
|
||||
path = os.path.join(gajim.DATA_DIR, 'iconsets', 'transports')
|
||||
folders = os.listdir(path)
|
||||
if os.path.isdir(os.path.join(gajim.MY_ICONSETS_PATH, 'transports')):
|
||||
path = os.path.join(gajim.MY_ICONSETS_PATH, 'transports')
|
||||
folders += os.listdir(path)
|
||||
for transport in folders:
|
||||
|
|
Loading…
Reference in New Issue