Skip to content

Commit

Permalink
0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszkrzaczkowski committed Nov 4, 2023
1 parent aa1d87a commit ab15605
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion plugins/yetiforce/compose.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/yetiforce/compose.min.js.map

Large diffs are not rendered by default.

17 changes: 12 additions & 5 deletions plugins/yetiforce/preview.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,19 @@ rcube_webmail.prototype.registerImportMail = function () {
folder: rcmail.env.mailbox,
rcId: rcmail.env.user_id
})
.done(function () {
.done(function (data) {
rcmail.loadActionBar();
rcmail.crm.app.showNotify({
text: rcmail.crm.app.vtranslate('AddFindEmailInRecord'),
type: 'success'
});
if (data['result']) {
rcmail.crm.app.showNotify({
text: rcmail.crm.app.vtranslate('AddFindEmailInRecord'),
type: 'success'
});
} else {
rcmail.crm.app.showNotify({
text: rcmail.crm.app.vtranslate('JS_UNEXPECTED_ERROR'),
type: 'error'
});
}
})
.fail(function () {
clicked = false;
Expand Down
4 changes: 2 additions & 2 deletions plugins/yetiforce/preview.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/yetiforce/preview.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

return [
'patch' => '2022.08.02',
'patch' => '2022.08.25',
'version' => '0.3.4',
];

0 comments on commit ab15605

Please sign in to comment.