From 3ad569f426bbedc2170f8cf90a47e8faf6473a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 4 Aug 2021 00:28:25 +0200 Subject: [PATCH] extensionDownloader: Use plain Soup.Session Unlike for the old Soup.SessionSync/SessionAsync classes, Soup.Session:ssl-use-system-ca-file already defaults to true. In Soup3, the behavior was made unconditional and the property removed. Part-of: --- js/ui/extensionDownloader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/extensionDownloader.js b/js/ui/extensionDownloader.js index 08cea5931..13fcf35db 100644 --- a/js/ui/extensionDownloader.js +++ b/js/ui/extensionDownloader.js @@ -252,5 +252,5 @@ class InstallExtensionDialog extends ModalDialog.ModalDialog { }); function init() { - _httpSession = new Soup.Session({ ssl_use_system_ca_file: true }); + _httpSession = new Soup.Session(); }