fixed inst entry point
This commit is contained in:
parent
7f41446558
commit
42fd64022c
1 changed files with 2 additions and 2 deletions
|
@ -84,8 +84,8 @@ public class InfoController {
|
|||
.getOrThrow()
|
||||
.stream()
|
||||
.filter(inst -> BooleanUtils.isTrue(inst.active) &&
|
||||
(inst.urlSuffix == null ||
|
||||
urlSuffix.equals(inst.urlSuffix)))
|
||||
inst.urlSuffix != null &&
|
||||
urlSuffix.equals(inst.urlSuffix))
|
||||
.map(inst -> new EntityName(inst.getEntityKey(), inst.name))
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue