force follow if any error happens
This commit is contained in:
parent
bc7e801063
commit
7f287e0c3a
|
@ -129,11 +129,15 @@ export class AccountMoveService {
|
||||||
@bindThis
|
@bindThis
|
||||||
public async move(src: User, dst: User): Promise<void> {
|
public async move(src: User, dst: User): Promise<void> {
|
||||||
// Copy blockings and mutings, and update lists
|
// Copy blockings and mutings, and update lists
|
||||||
await Promise.all([
|
try {
|
||||||
this.copyBlocking(src, dst),
|
await Promise.all([
|
||||||
this.copyMutings(src, dst),
|
this.copyBlocking(src, dst),
|
||||||
this.updateLists(src, dst),
|
this.copyMutings(src, dst),
|
||||||
]);
|
this.updateLists(src, dst),
|
||||||
|
]);
|
||||||
|
} catch {
|
||||||
|
/* skip if any error happens */
|
||||||
|
}
|
||||||
|
|
||||||
// follow the new account and unfollow the old one
|
// follow the new account and unfollow the old one
|
||||||
const proxy = await this.proxyAccountService.fetch();
|
const proxy = await this.proxyAccountService.fetch();
|
||||||
|
|
Loading…
Reference in New Issue