fix sockes5 transfer

This commit is contained in:
Yann Leboulanger 2012-06-20 23:58:23 +02:00
parent 5d7ce867b4
commit 1c895779ce
2 changed files with 2 additions and 1 deletions

View File

@ -135,6 +135,7 @@ class FileProp(object):
self.startexmpp = None self.startexmpp = None
self.session_type = None self.session_type = None
self.request_id = None self.request_id = None
self.proxyhosts = None
def getsid(self): def getsid(self):
# Getter of the property sid # Getter of the property sid

View File

@ -735,7 +735,7 @@ class ConnectionSocks5Bytestream(ConnectionBytestream):
if file_props.stopped: if file_props.stopped:
self.remove_transfer(file_props) self.remove_transfer(file_props)
else: else:
gajim.socks5queue.send_file(file_props, self.name, 'client') gajim.socks5queue.send_file(file_props, self.name, 'server')
raise xmpp.NodeProcessed raise xmpp.NodeProcessed