Skip to content

Commit

Permalink
Bug/SU-525: 53 y 54 Jobs error (#1399)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiter-julius-oketayot authored Dec 16, 2024
1 parent 0c440b5 commit b71e9ef
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,8 @@ public Long retrieveInvoiceThreshold() {
@Override
public List<String> retrieveInvoiceJobNotificationEmails() {
final GlobalConfigurationPropertyData property = getGlobalConfigurationPropertyData(INVOICE_NOTIFICATION_EMAILS);
if (property.isEnabled()) {
final String stringValue = property.getStringValue();
if (property.isEnabled() && StringUtils.isNotBlank(stringValue)) {
return List.of(property.getStringValue().split(","));
}
return List.of();
Expand Down

0 comments on commit b71e9ef

Please sign in to comment.