Changeset 8902
- Timestamp:
- 10/11/07 18:48:28 (14 months ago)
- Files:
-
- 1 modified
-
trunk/src/common/connection_handlers.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/connection_handlers.py
r8901 r8902 464 464 465 465 if real_id[:3] == 'au_': 466 gajim.socks5queue.send_file(file_props, self.name) 466 if file_props['stopped']: 467 self.remove_transfer(file_props) 468 else: 469 gajim.socks5queue.send_file(file_props, self.name) 467 470 raise common.xmpp.NodeProcessed 468 471 … … 486 489 487 490 else: 488 gajim.socks5queue.send_file(file_props, self.name) 491 if file_props['stopped']: 492 self.remove_transfer(file_props) 493 else: 494 gajim.socks5queue.send_file(file_props, self.name) 489 495 if file_props.has_key('fast'): 490 496 fasts = file_props['fast']
