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: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1940>
This commit is contained in:
Florian Müllner 2021-08-04 00:28:25 +02:00
parent f14960ff03
commit 3ad569f426

View File

@ -252,5 +252,5 @@ class InstallExtensionDialog extends ModalDialog.ModalDialog {
}); });
function init() { function init() {
_httpSession = new Soup.Session({ ssl_use_system_ca_file: true }); _httpSession = new Soup.Session();
} }