Changeset 9834
- Timestamp:
- 06/24/08 03:17:02 (5 months ago)
- Files:
-
- 1 modified
-
trunk/src/common/connection_handlers.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/common/connection_handlers.py
r9829 r9834 1664 1664 encrypted = False 1665 1665 xep_200_encrypted = msg.getTag('c', namespace=common.xmpp.NS_STANZA_CRYPTO) 1666 1666 1667 1667 # Receipt requested 1668 1668 # TODO: We shouldn't answer if we're invisible! … … 1677 1677 receipt.setTag('received', 1678 1678 namespace='urn:xmpp:receipts') 1679 receipt.setThread(thread_id) 1679 1680 if thread_id: 1681 receipt.setThread(thread_id) 1680 1682 con.send(receipt) 1681 1683
