Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773bfed commit 7b1401fCopy full SHA for 7b1401f
server/api-service/openblocks-server/src/main/java/com/openblocks/api/home/UserHomeApiServiceImpl.java
@@ -212,7 +212,9 @@ public Flux<ApplicationInfoView> getAllAuthorisedApplications4CurrentOrgMember(@
212
})
213
.filter(application -> isNull(applicationType) || application.getApplicationType() == applicationType.getValue())
214
.filter(application -> isNull(applicationStatus) || application.getApplicationStatus() == applicationStatus)
215
- .cache();
+ .cache()
216
+ .collectList()
217
+ .flatMapIterable(Function.identity());
218
219
// last view time
220
Mono<Map<String, Instant>> applicationLastViewTimeMapMono = userApplicationInteractionService.findByUserId(visitorId)
0 commit comments