commit df19d0370fba2735062d565a45c3461ea77c7094 parent 7927b348fd7abd2a5f6b610978a627792a3e5ce1 Author: Marc Stibane <marc@taler.net> Date: Mon, 26 Feb 2024 23:06:54 +0100 Use HTTP lib of quickjs-tart, still with curl Diffstat:
| M | TalerWallet1/Quickjs/quickjs.swift | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Quickjs/quickjs.swift b/TalerWallet1/Quickjs/quickjs.swift @@ -60,7 +60,9 @@ public class Quickjs { TALER_WALLET_set_log_handler(talerWalletInstance, logging_callback, Unmanaged.passUnretained(self).toOpaque()) - TALER_WALLET_run(talerWalletInstance); + let http_curl = js_curl_http_client_create() + TALER_set_http_client_implementation(talerWalletInstance, http_curl) + TALER_WALLET_run(talerWalletInstance) } deinit {