Skip to content

Commit a722ea8

Browse files
fix(backend): 連合限定先が間違って連合しない先に代入されているのを修正 (#14662)
* fix(backend): 連合限定先が間違って連合しない先に代入されているのを修正 * build: fix property typo
1 parent 1e9813e commit a722ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/server/api/endpoints/admin/update-meta.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
652652
}
653653

654654
if (Array.isArray(ps.federationHosts)) {
655-
set.blockedHosts = ps.federationHosts.filter(Boolean).map(x => x.toLowerCase());
655+
set.federationHosts = ps.federationHosts.filter(Boolean).map(x => x.toLowerCase());
656656
}
657657

658658
const before = await this.metaService.fetch(true);

0 commit comments

Comments
 (0)