Skip to content

Commit 13b4e29

Browse files
author
Chris Wiechmann
committed
Bugfix. #57 appRedirectUrls can be null
1 parent 77b2dad commit 13b4e29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/apim-adapter/src/main/java/com/axway/apim/adapter/clientApps/ClientAppFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public boolean filter(ClientApplication app) throws AppException {
216216
}
217217

218218
private boolean filterCredential(String appCredential, String[] appRedirectUrls, String appName) {
219-
if(appCredential==null || appRedirectUrls==null) {
219+
if(appCredential==null) {
220220
LOG.warn("Inconsistent application: '"+appName+"' found. API-Key/Client-ID is NULL for credential.");
221221
return false;
222222
}

0 commit comments

Comments
 (0)