Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alkorgun/blacksmith-2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'BlackSmith.py')
-rw-r--r--BlackSmith.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/BlackSmith.py b/BlackSmith.py
index 8ae6f2c..46ed62a 100644
--- a/BlackSmith.py
+++ b/BlackSmith.py
@@ -273,7 +273,7 @@ ConDispFile = static % ("clients.ini")
ChatsFile = dynamic % ("chats.db")
ChatsFileBackup = dynamic % ("chats.cp")
-(BsMark, BsVer, BsRev) = (2, 47, 0)
+(BsMark, BsVer, BsRev) = (2, 48, 0)
if os.access(SvnCache, os.R_OK):
Cache = open(SvnCache).readlines()
@@ -1492,7 +1492,7 @@ def XmppMessageCB(disp, stanza):
if stype != Types[1]:
if (stanza.getTag(Types[14])):
answer = xmpp.Message(source)
- answer.setTag(Types[15], namespace = xmpp.NS_RECEIPTS)
+ answer.setTag(Types[15], namespace = xmpp.NS_RECEIPTS).setAttr("id", stanza.getID())
answer.setID(stanza.getID())
Sender(disp, answer)
stype = Types[0]