upd: fix donationUrl check position
This commit is contained in:
parent
6b459be117
commit
9dd51bc9eb
@ -49,13 +49,14 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||
};
|
||||
|
||||
if (ps.instance) {
|
||||
return { sponsor_data: await maybeCached('instanceSponsors', ps.forceUpdate, async () => {
|
||||
let totalSponsors;
|
||||
const meta = await this.metaService.fetch();
|
||||
const meta = await this.metaService.fetch();
|
||||
if (meta.donationUrl && !meta.donationUrl.includes('opencollective.com')) {
|
||||
return [];
|
||||
} else if (meta.donationUrl) {
|
||||
return { sponsor_data: await maybeCached('instanceSponsors', ps.forceUpdate, async () => {
|
||||
let totalSponsors;
|
||||
const meta = await this.metaService.fetch();
|
||||
|
||||
if (meta.donationUrl && !meta.donationUrl.includes('opencollective.com')) {
|
||||
return [];
|
||||
} else if (meta.donationUrl) {
|
||||
try {
|
||||
const backers = await fetch(`${meta.donationUrl}/members/users.json`).then((response) => response.json());
|
||||
|
||||
@ -70,10 +71,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}) };
|
||||
}) };
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
} else {
|
||||
return { sponsor_data: await maybeCached('sponsors', ps.forceUpdate, async () => {
|
||||
let totalSponsors;
|
||||
|
Loading…
Reference in New Issue
Block a user