mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-17 23:33:52 +01:00
Convert to int
This commit is contained in:
parent
b2d8d07109
commit
f1378aef91
1 changed files with 1 additions and 0 deletions
|
@ -204,6 +204,7 @@ class UserDirectoryStore(SQLBaseStore):
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_current_state_deltas(self, prev_stream_id):
|
def get_current_state_deltas(self, prev_stream_id):
|
||||||
|
prev_stream_id = int(prev_stream_id)
|
||||||
if not self._curr_state_delta_stream_cache.has_any_entity_changed(prev_stream_id):
|
if not self._curr_state_delta_stream_cache.has_any_entity_changed(prev_stream_id):
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue