use correct JID when we receive a file-completed event depending if we send or receive the file. See #1553
這個提交存在於:
父節點
559307912e
當前提交
34e8e0c950
共有 1 個檔案被更改,包括 4 行新增 和 2 行删除
|
@ -992,7 +992,6 @@ class Interface:
|
|||
# We add it to the awaiting_events queue
|
||||
# Do we have a queue?
|
||||
jid = gajim.get_jid_without_resource(jid)
|
||||
print 'add_event', account, jid, typ
|
||||
qs = gajim.awaiting_events[account]
|
||||
no_queue = False
|
||||
if not qs.has_key(jid):
|
||||
|
@ -1097,7 +1096,10 @@ class Interface:
|
|||
if file_props.has_key('stalled') and file_props['stalled'] or \
|
||||
file_props.has_key('paused') and file_props['paused']:
|
||||
return
|
||||
jid = unicode(file_props['sender'])
|
||||
if file_props['type'] == 'r': # we receive a file
|
||||
jid = unicode(file_props['sender'])
|
||||
else: # we send a file
|
||||
jid = unicode(file_props['receiver'])
|
||||
|
||||
if gajim.popup_window(account):
|
||||
if file_props['error'] == 0:
|
||||
|
|
載入中…
新增表格
新增問題並參考