Skip to content

Commit

Permalink
Regression: Settings pagination not working (#3277)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolmello authored Jul 15, 2021
1 parent e040be0 commit d1702aa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/lib/methods/getSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,10 @@ export function subscribeSettings() {
export default async function() {
try {
const db = database.active;
const settingsParams = JSON.stringify(Object.keys(settings).filter(key => !loginSettings.includes(key)));
const settingsParams = Object.keys(settings).filter(key => !loginSettings.includes(key));
// RC 0.60.0
const result = await fetch(`${ this.sdk.client.host }/api/v1/settings.public?query={"_id":{"$in":${ settingsParams }}}`).then(response => response.json());
const result = await fetch(`${ this.sdk.client.host }/api/v1/settings.public?query={"_id":{"$in":${ JSON.stringify(settingsParams) }}}&count=${ settingsParams.length }`)
.then(response => response.json());

if (!result.success) {
return;
Expand Down

0 comments on commit d1702aa

Please sign in to comment.