Skip to content
Snippets Groups Projects

1.4.2

3 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline

Files

@@ -126,7 +126,7 @@ public class LabracoreApiConfig {
// Find the first pageable parameter if any exists.
MultiValueMap<String, String> query = uriBuilder.build().getQueryParams();
var pageableParam = query.entrySet().stream()
.filter(kv -> kv.getValue().stream().anyMatch(v -> v.contains("class+LCPageable")))
.filter(kv -> kv.getValue().stream().anyMatch(v -> v.contains("LCPageable")))
.findFirst();
// If a pageable parameter exists, replace it with the appropriate query parameters instead.
Loading