Changeset 8955 for branches/gajim_0.11.2/src/common/connection_handlers.py
- Timestamp:
- 11/09/07 20:30:15 (13 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.2/src/common/connection_handlers.py
r8740 r8955 449 449 450 450 if real_id[:3] == 'au_': 451 gajim.socks5queue.send_file(file_props, self.name) 451 if file.has_key('stopped') and file_props['stopped']: 452 self.remove_transfer(file_props) 453 else: 454 gajim.socks5queue.send_file(file_props, self.name) 452 455 raise common.xmpp.NodeProcessed 453 456 … … 471 474 472 475 else: 473 gajim.socks5queue.send_file(file_props, self.name) 476 if file_props.has_key('stopped') and file_props['stopped']: 477 self.remove_transfer(file_props) 478 else: 479 gajim.socks5queue.send_file(file_props, self.name) 474 480 if file_props.has_key('fast'): 475 481 fasts = file_props['fast'] … … 1044 1050 self.dispatch('METACONTACTS', meta_list) 1045 1051 else: 1046 self.private_storage_supported = False 1052 if iq_obj.getErrorCode() not in ('403', '406', '404'): 1053 self.private_storage_supported = False 1047 1054 # We can now continue connection by requesting the roster 1048 1055 self.connection.initRoster()
