Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszkrzaczkowski committed Aug 25, 2022
1 parent b30242e commit 6aaa0fd
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 12 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.

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

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

0 comments on commit 6aaa0fd

Please sign in to comment.