summary refs log tree commit diff
path: root/synapse/appservice/api.py
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2015-03-09 17:45:41 +0000
committerKegan Dougal <kegan@matrix.org>2015-03-09 17:45:41 +0000
commit04c9751f24885b974d564b3e5749b7fc9ce01c73 (patch)
treecb62723909589e3ad8e3a1a8a3aaedfb3deb6fac /synapse/appservice/api.py
parentUse event IDs instead of dumping event content in the txns table. (diff)
downloadsynapse-04c9751f24885b974d564b3e5749b7fc9ce01c73.tar.xz
Bug fixes whilst putting it all together
Diffstat (limited to 'synapse/appservice/api.py')
-rw-r--r--synapse/appservice/api.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/appservice/api.py b/synapse/appservice/api.py
index c17fb219c5..3acb8867a2 100644
--- a/synapse/appservice/api.py
+++ b/synapse/appservice/api.py
@@ -79,6 +79,7 @@ class ApplicationServiceApi(SimpleHttpClient):
             logger.warning("push_bulk: Missing txn ID sending events to %s",
                            service.url)
             txn_id = str(0)
+        txn_id = str(txn_id)
 
         uri = service.url + ("/transactions/%s" %
                              urllib.quote(txn_id))