From 061bd2d71eb88551982cc5f4d4948a6418ebb029 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 12 Jan 2016 22:07:33 +0100 Subject: [PATCH] Rework option parsing in test-client Setting the property didn't change soup_session:ssl-strict --- src/matrix-http-api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix-http-api.c b/src/matrix-http-api.c index 9e97632..2287cec 100644 --- a/src/matrix-http-api.c +++ b/src/matrix-http-api.c @@ -118,7 +118,7 @@ matrix_http_api_set_property(GObject *gobject, switch (prop_id) { case PROP_VALIDATE_CERTIFICATE: - priv->validate_certificate = g_value_get_boolean(value); + matrix_http_api_set_validate_certificate(api, g_value_get_boolean(value)); break;