mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fix replies to encrypted mails dont open with encryption switched on
This commit is contained in:
parent
db180f816d
commit
d384f2407a
@ -4457,7 +4457,7 @@ app.classes.mail = AppJS.extend(
|
||||
};
|
||||
// set encrypted checkbox, if not already set
|
||||
var composeToolbar = this.et2.getWidgetById('composeToolbar');
|
||||
if (composeToolbar.checkbox('pgp'))
|
||||
if (!composeToolbar.checkbox('pgp'))
|
||||
{
|
||||
composeToolbar.checkbox('pgp',true);
|
||||
}
|
||||
|
@ -865,7 +865,7 @@ var AppJS = Class.extend(
|
||||
{
|
||||
jQuery(window).on('mailvelope', function()
|
||||
{
|
||||
self.mailvelopeOpenKeyring.then(callback);
|
||||
self.mailvelopeOpenKeyring().then(callback);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user