mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-18 18:05:36 +00:00
(fix) avoid displaying empty signed emails when using GNU TLS (fixes #4433)
This commit is contained in:
@@ -9,6 +9,7 @@ Enhancements
|
||||
|
||||
Bug fixes
|
||||
- [core] handle multi-valued mozillasecondemail attribute mapping
|
||||
- [core] avoid displaying empty signed emails when using GNU TLS (#4433)
|
||||
- [web] improve popup window detection in message viewer (#4518)
|
||||
|
||||
4.0.1 (2018-07-10)
|
||||
|
||||
@@ -170,8 +170,9 @@
|
||||
if (err)
|
||||
{
|
||||
ERR_load_crypto_strings();
|
||||
SSL_load_error_strings();
|
||||
sslError = ERR_reason_error_string(err);
|
||||
validationMessage = [[self labelForKey: [NSString stringWithUTF8String: sslError]] retain];
|
||||
validationMessage = [[self labelForKey: [NSString stringWithUTF8String: sslError ? sslError : "(no error information available)"]] retain];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user