From c50de0b0f0064471632720574dba63437f5c5cef Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Mon, 17 Mar 2025 12:27:16 -0400 Subject: [PATCH] ssb: Testing a theory that message sends are piling up. --- src/ssb.rpc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ssb.rpc.c b/src/ssb.rpc.c index 1e5b985f..074806f4 100644 --- a/src/ssb.rpc.c +++ b/src/ssb.rpc.c @@ -1009,9 +1009,7 @@ static void _tf_ssb_connection_send_history_stream( .end_request = end_request, }; snprintf(async->author, sizeof(async->author), "%s", author); - char key[128]; - snprintf(key, sizeof(key), "%s:%" PRId64, author, sequence); - tf_ssb_connection_schedule_idle(connection, key, _tf_ssb_connection_send_history_stream_callback, async); + tf_ssb_connection_schedule_idle(connection, author, _tf_ssb_connection_send_history_stream_callback, async); } }