diff --git a/CHANGELOG.md b/CHANGELOG.md index 203b087..b91f6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v2.1.1: +- min. version setting 91.3.1 is not valid, so chose 91.0 +- some minor bugs fixed + # v2.1.0: - support Thunderbird 102 (max. version setting 91.\* > 102.\*) - use new API "relatedMessageId" to identify e.g. the message we reply-to. diff --git a/scripts/options.js b/scripts/options.js index b2aa16b..9a68074 100644 --- a/scripts/options.js +++ b/scripts/options.js @@ -139,11 +139,7 @@ function accountSelectorChanged(result) { ); // Remember preferences of currently showed account perAccountSettings.identityMechanism = document.getElementById("defaultIdentity").checked ? 0 : 1; - if (document.getElementById("explicitSelector").selectedItem) { - perAccountSettings.explicitIdentity = document.getElementById( - "explicitSelector" - ).selectedItem.value; - } + perAccountSettings.explicitIdentity = document.getElementById("explicitSelector").value; perAccountSettings.replyFromRecipient = document.getElementById( "replyFromRecipient" ).checked; @@ -175,7 +171,7 @@ function identityMechanismChanged(result) { explicitSelector.selectedIndex = perAccountSettings.index; } else { // sync with gui display - perAccountSettings.explicitIdentity = document.getElementById("explicitSelector").target.value; + perAccountSettings.explicitIdentity = explicitSelector.value; } notifySettingsChanged();