fix parsing of first hop

This commit is contained in:
Zlatin Balevsky
2019-06-01 11:03:27 +01:00
parent 1e314b3cca
commit d5b8c0c694

View File

@@ -165,7 +165,7 @@ abstract class Connection implements Closeable {
QueryEvent event = new QueryEvent ( searchEvent : searchEvent, QueryEvent event = new QueryEvent ( searchEvent : searchEvent,
replyTo : replyTo, replyTo : replyTo,
receivedOn : endpoint.destination, receivedOn : endpoint.destination,
firstHop : Boolean.parseBoolean(search.firstHop) ) firstHop : search.firstHop )
eventBus.publish(event) eventBus.publish(event)
} }