Skip to content

Commit

Permalink
Email: Add unknown recipients dialog didn't show up anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
mschering committed Oct 9, 2020
1 parent 6508022 commit ed64bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Studio: Only users with "Manage" permissions on the module may edit and create.
- Core: Users have auto generated avatar with color and initials
- Email: Font colors sometimes not working
- Email: Add unknown recipients dialog didn't show up anymore

06-10-2020 6.4.175
- Core: Dark theme showed e-mail text in light font colors.
Expand Down
2 changes: 1 addition & 1 deletion www/modules/email/EmailComposer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ Ext.extend(GO.email.EmailComposer, GO.Window, {
callback.call();
}

if (GO.addressbook && action.result.unknown_recipients
if (go.Modules.isAvailable("community", "addressbook") && action.result.unknown_recipients
&& action.result.unknown_recipients.length) {
if (!GO.email.unknownRecipientsDialog)
GO.email.unknownRecipientsDialog = new GO.email.UnknownRecipientsDialog();
Expand Down

0 comments on commit ed64bdf

Please sign in to comment.