mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 12:14:18 +00:00
upd: fix donationUrl check position
This commit is contained in:
@@ -49,13 +49,14 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||
};
|
||||
|
||||
if (ps.instance) {
|
||||
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 { sponsor_data: await maybeCached('sponsors', ps.forceUpdate, async () => {
|
||||
let totalSponsors;
|
||||
|
||||
Reference in New Issue
Block a user