diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-28 16:39:18 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-28 16:39:18 +0000 |
commit | 45cf827c8fe7163a51f1d0d7c9e2531da9b58c8d (patch) | |
tree | 450edc3be0468c2f302c04b0df8cae058d3f79e5 /synapse/storage/account_data.py | |
parent | Cache tags and account data (diff) | |
download | synapse-45cf827c8fe7163a51f1d0d7c9e2531da9b58c8d.tar.xz |
Change name and doc has_entity_changed
Diffstat (limited to 'synapse/storage/account_data.py')
-rw-r--r-- | synapse/storage/account_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/account_data.py b/synapse/storage/account_data.py index 95294c3f6c..62e49e1c0e 100644 --- a/synapse/storage/account_data.py +++ b/synapse/storage/account_data.py @@ -128,7 +128,7 @@ class AccountDataStore(SQLBaseStore): return (global_account_data, account_data_by_room) - changed = self._account_data_stream_cache.get_entity_has_changed( + changed = self._account_data_stream_cache.has_entity_changed( user_id, int(stream_id) ) if not changed: |