summary refs log tree commit diff
path: root/synapse/state.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-15 16:47:48 +0100
committerErik Johnston <erik@matrix.org>2014-08-15 16:47:48 +0100
commit0e938b1ff75bdeffefb3f3a3260972a19d99d4d9 (patch)
tree9d1e3eed368dd954e311e096ea8d9fd4c2bc4e8a /synapse/state.py
parentFix typo of key name (diff)
downloadsynapse-0e938b1ff75bdeffefb3f3a3260972a19d99d4d9.tar.xz
Rename method name to not clash with other ones in storage.
Diffstat (limited to 'synapse/state.py')
-rw-r--r--synapse/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state.py b/synapse/state.py
index 4f8b4d9760..ca8e1ca630 100644
--- a/synapse/state.py
+++ b/synapse/state.py
@@ -86,7 +86,7 @@ class StateHandler(object):
         else:
             event.depth = 0
 
-        current_state = yield self.store.get_current_state(
+        current_state = yield self.store.get_current_state_pdu(
             key.context, key.type, key.state_key
         )