Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Evolveum/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed May 18, 2014
2 parents c7a455c + 29cd6e0 commit abad73d
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -48,7 +48,14 @@ public NotificationConfigurationDto(NotificationConfigurationType config){
MailConfigurationType mailConfig = config.getMail();

defaultFrom = mailConfig.getDefaultFrom();
debug = mailConfig.isDebug();

if(mailConfig.isDebug() != null){
debug = mailConfig.isDebug();
} else {
debug = false;
}


redirectToFile = mailConfig.getRedirectToFile();

if(!mailConfig.getServer().isEmpty() && mailConfig.getServer().get(0) != null){
Expand Down

0 comments on commit abad73d

Please sign in to comment.