Skip to content

Commit

Permalink
Fixed an error that disabled Phase4PeppolServletConfiguration checks
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Feb 10, 2020
1 parent 86eb8c8 commit 796c054
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ private void _initPeppolAS4 ()

final String sSMPURL = AS4ServerConfiguration.getSettings ().getAsString ("smp.url");
final String sAPURL = AS4ServerConfiguration.getServerAddress ();
if (StringHelper.hasText (sSMPURL) && StringHelper.hasNoText (sAPURL))
if (StringHelper.hasText (sSMPURL) && StringHelper.hasText (sAPURL))
{
Phase4PeppolServletConfiguration.setReceiverCheckEnabled (true);
Phase4PeppolServletConfiguration.setSMPClient (new SMPClientReadOnly (URLHelper.getAsURI (sSMPURL)));
Expand Down

0 comments on commit 796c054

Please sign in to comment.