diff options
Diffstat (limited to 'lib/flesh.ml')
-rw-r--r-- | lib/flesh.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/flesh.ml b/lib/flesh.ml index 51f1b6c..55eeefc 100644 --- a/lib/flesh.ml +++ b/lib/flesh.ml @@ -25,7 +25,7 @@ let connect (domain : string) (config : Stream.config) : (Portal.t * Stream.feat let rec handle_features (features : Stream.features) : Stream.features Lwt.t = match features with | feature :: mandatory, optional -> - let* () = Stream.negotiate_feature true feature portal config + let* () = Stream.negotiate true feature portal config in if needs_restart feature then Stream.start domain portal >>= handle_features else handle_features (mandatory, optional) |