Restore cert error check

https://forums.ankiweb.net/t/bug-unknown-error-on-startup-anki-25-02/61232/3
(cherry picked from commit 37984233cc)
This commit is contained in:
Damien Elmes 2025-06-02 16:52:09 +07:00
parent 6381f1845f
commit afb3eb7fd8

View file

@ -235,6 +235,8 @@ class ErrorHandler(QObject):
if "unable to get local issuer certificate" in error and is_win: if "unable to get local issuer certificate" in error and is_win:
showWarning(tr.errors_windows_ssl_updates()) showWarning(tr.errors_windows_ssl_updates())
return return
if is_chromium_cert_error(error):
return
debug_text = supportText() + "\n" + error debug_text = supportText() + "\n" + error