Skip to content

directory: Fix search for other homeservers

Daniel Garcia Moreno requested to merge fix-room-search-other-servers into master

The matrix server request expect the "server" parameter to be a string. If the "server" in Parameters is "Option<Host>" it serializes to somethign like 'Domain("matrix.org")'.

This patch makes the server parameter a string so the request is built correctly everytime. The "Host" enum is converted to an string during the parsing.

Merge request reports