diff options
Diffstat (limited to '')
| -rw-r--r-- | bin/leda.ml | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bin/leda.ml b/bin/leda.ml index 8c20e4b..1438796 100644 --- a/bin/leda.ml +++ b/bin/leda.ml @@ -7,7 +7,7 @@ module R = Gemini.GeminiTransaction.GeminiTransaction(T)  let () =    Lwt_main.run begin -    let req = R.string_to_request "gemini://gemini.circumlunar.space/\r\n" in +    let req = R.make_request ~url:"gemini://gemini.circumlunar.space/\r\n" in      let%lwt response = R.transaction req in      match response with      | Some (_, _, s) -> Lwt_io.printl s | 
