From 85e9234dcc7743fdada2a2897fe025b5595cf59b Mon Sep 17 00:00:00 2001 From: Stafford Williams Date: Sat, 15 Jul 2023 23:41:01 +1000 Subject: [PATCH 1/2] fixes #1401 --- hydrus/client/networking/ClientLocalServerResources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydrus/client/networking/ClientLocalServerResources.py b/hydrus/client/networking/ClientLocalServerResources.py index b627c1d8..cb0432b8 100644 --- a/hydrus/client/networking/ClientLocalServerResources.py +++ b/hydrus/client/networking/ClientLocalServerResources.py @@ -702,7 +702,7 @@ def ParseHashes( request: HydrusServerRequest.HydrusRequest ): if len( hash_ids_to_hashes ) > 0: - hashes.extend( hash_ids_to_hashes[ hash_id ] ) + hashes=[hash_ids_to_hashes[ hash_id ]] From f2ee7eee22663e7e33f44dd594ae8c84fc2d484d Mon Sep 17 00:00:00 2001 From: Hydrus Network Developer Date: Sat, 22 Jul 2023 13:05:40 -0500 Subject: [PATCH 2/2] Update hydrus/client/networking/ClientLocalServerResources.py Co-authored-by: Paul Friederichsen --- hydrus/client/networking/ClientLocalServerResources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydrus/client/networking/ClientLocalServerResources.py b/hydrus/client/networking/ClientLocalServerResources.py index cb0432b8..fea3f921 100644 --- a/hydrus/client/networking/ClientLocalServerResources.py +++ b/hydrus/client/networking/ClientLocalServerResources.py @@ -702,7 +702,7 @@ def ParseHashes( request: HydrusServerRequest.HydrusRequest ): if len( hash_ids_to_hashes ) > 0: - hashes=[hash_ids_to_hashes[ hash_id ]] + hashes.append(hash_ids_to_hashes[ hash_id ])