refactor(server): use insert instead of save

This commit is contained in:
syuilo 2022-01-03 03:17:16 +09:00
parent 6be1db00d1
commit f25777f2d2
1 changed files with 2 additions and 2 deletions

View File

@ -22,11 +22,11 @@ export async function getRelayActor(): Promise<ILocalUser> {
} }
export async function addRelay(inbox: string) { export async function addRelay(inbox: string) {
const relay = await Relays.save({ const relay = await Relays.insert({
id: genId(), id: genId(),
inbox, inbox,
status: 'requesting', status: 'requesting',
}); }).then(x => Relays.findOneOrFail(x.identifiers[0]));
const relayActor = await getRelayActor(); const relayActor = await getRelayActor();
const follow = await renderFollowRelay(relay, relayActor); const follow = await renderFollowRelay(relay, relayActor);