In commandline.py, we have this code:
if QSslSocket: has_ssl_support = QSslSocket.supportsSsl() log.info(f"SSL support: {has_ssl_support!r}") if not has_ssl_support: options.ca_bundle = None options.ssl_no_verify = True
It is fine as is but we should enhance it to quit Drive if there is no SSL support when Drive is packaged, meaning there was an error at the packaging level.