From d1dfc73f5a71f0d75b720a1d5012c62e08b492fe Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Thu, 6 Jun 2019 19:28:29 +0100 Subject: [PATCH] decode infohash --- .../main/groovy/com/muwire/core/connection/Connection.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/connection/Connection.groovy b/core/src/main/groovy/com/muwire/core/connection/Connection.groovy index ef86693a..a42efb8d 100644 --- a/core/src/main/groovy/com/muwire/core/connection/Connection.groovy +++ b/core/src/main/groovy/com/muwire/core/connection/Connection.groovy @@ -180,7 +180,7 @@ abstract class Connection implements Closeable { SearchEvent searchEvent = new SearchEvent(searchTerms : search.keywords, - searchHash : search.infohash, + searchHash : Base64.decode(search.infohash), uuid : uuid) QueryEvent event = new QueryEvent ( searchEvent : searchEvent, replyTo : replyTo,