From a02d609b1ffdc313fc1e06a68228ad2cb45919ec Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Sat, 11 Feb 2017 20:44:16 -0500 Subject: [PATCH 1/2] Fix synapse_port_db failure (fixes #1902) See https://matrix.to/#/!cURbafjkfsMDVwdRDQ:matrix.org/$148686272020hCgRD:potatofrom.space Signed-off-by: Kevin Liu --- scripts/synapse_port_db | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 2cb2eab68..4bd110c32 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -40,6 +40,7 @@ BOOLEAN_COLUMNS = { "presence_list": ["accepted"], "presence_stream": ["currently_active"], "public_room_list_stream": ["visibility"], + "device_list_outbound_pokes": ["sent"], } From 70a00eacf9ebdca70966fa8c343d55d6e9232973 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Sat, 11 Feb 2017 20:49:31 -0500 Subject: [PATCH 2/2] Fix typo This is what I get for not proofreading --- scripts/synapse_port_db | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 4bd110c32..ea367a128 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -40,7 +40,7 @@ BOOLEAN_COLUMNS = { "presence_list": ["accepted"], "presence_stream": ["currently_active"], "public_room_list_stream": ["visibility"], - "device_list_outbound_pokes": ["sent"], + "device_lists_outbound_pokes": ["sent"], }