fix
This commit is contained in:
parent
5117b57305
commit
242bc02372
|
@ -117,6 +117,15 @@ public class ManagedWebAccessBuilder {
|
|||
}
|
||||
|
||||
|
||||
private ServerDetailsPOJO getServer(String url) {
|
||||
for (ServerDetailsPOJO t : serverAuthDetails) {
|
||||
if (url.startsWith(t.getUrl())) {
|
||||
return t;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public HTTPResult get(String url) throws IOException {
|
||||
switch (ManagedWebAccess.getAccessPolicy()) {
|
||||
case DIRECT:
|
||||
|
|
Loading…
Reference in New Issue