diff options
Diffstat (limited to 'lib/stream.ml')
-rw-r--r-- | lib/stream.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream.ml b/lib/stream.ml index a4795ef..01d6a55 100644 --- a/lib/stream.ml +++ b/lib/stream.ml @@ -45,5 +45,5 @@ let parse_features (el : Xml.element) : features = {{: https://datatracker.ietf.org/doc/html/rfc6120#section-4.3 }}. *) let negotiate (domain : string) (portal : Portal.t) : features Lwt.t = let* _id = Portal.header domain portal - in let+ features = Xml.get portal.stream >|= parse_features + in let+ features = Wire.get portal.stream >|= parse_features in features |