Browse Source

Fix bug where a non-ASCII character in app.js could cause error in javascript engine (#8894)

pull/9596/head
Aleksander Machniak 3 years ago
parent
commit
a30206bf6a
  1. 1
      CHANGELOG.md
  2. 2
      program/js/app.js

1
CHANGELOG.md

@ -4,6 +4,7 @@
- Fix so N property always exists in a vCard export (#8771)
- Fix so rcmail::format_date() works with DateTimeImmutable input (#8867)
- Fix bug where a non-ASCII character in app.js could cause error in javascript engine (#8894)
## Release 1.5.3

2
program/js/app.js

@ -4264,7 +4264,7 @@ function rcube_webmail()
var container = $(this.gui_objects.editform).find('.identity-encryption').first();
var identity_email = $(this.gui_objects.editform).find('.ff_email').val().trim();
if (!container.length || !identity_email || !this.mailvelope_keyring.createKeyGenContainer)
if (!container.length || !identity_email || !this.mailvelope_keyring.createKeyGenContainer)
return;
var key_fingerprint;

Loading…
Cancel
Save