Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit ac6670c

Browse files
author
David Robertson
committed
Fix typo
1 parent a3257bb commit ac6670c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synapse/storage/databases/main/devices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ def _mark_as_sent_devices_by_remote_txn(
603603
txn=txn,
604604
table="device_lists_outbound_last_success",
605605
key_names=("destination", "user_id"),
606-
key_values=[destination, user_id) for user_id, _ in rows],
606+
key_values=[(destination, user_id) for user_id, _ in rows],
607607
value_names=("stream_id",),
608608
value_values=((stream_id,) for _, stream_id in rows),
609609
)

0 commit comments

Comments
 (0)