mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Restore cert error check
https://forums.ankiweb.net/t/bug-unknown-error-on-startup-anki-25-02/61232/3
This commit is contained in:
parent
a99beb71fe
commit
37984233cc
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue