lint
This commit is contained in:
parent
a3d77f3185
commit
3ba272fdb4
|
@ -66,7 +66,6 @@ export class UserBlockingService implements OnModuleInit {
|
|||
|
||||
@bindThis
|
||||
public async block(blocker: MiUser, blockee: MiUser, silent = false) {
|
||||
|
||||
// フォロー解除できない(=ブロックもできない)ユーザーの場合
|
||||
if (
|
||||
this.serverSettings.forciblyFollowedUsers.includes(blockee.id) &&
|
||||
|
|
|
@ -374,7 +374,6 @@ export class UserFollowingService implements OnModuleInit {
|
|||
},
|
||||
silent = false,
|
||||
): Promise<void> {
|
||||
|
||||
// フォロー解除できないユーザーの場合
|
||||
if (
|
||||
this.meta.forciblyFollowedUsers.includes(followee.id) &&
|
||||
|
|
|
@ -32,7 +32,6 @@ export class UserMutingService {
|
|||
|
||||
@bindThis
|
||||
public async mute(user: MiUser, target: MiUser, expiresAt: Date | null = null): Promise<void> {
|
||||
|
||||
// フォロー解除できない(=ミュートもできない)ユーザーの場合
|
||||
if (
|
||||
this.serverSettings.forciblyFollowedUsers.includes(target.id) &&
|
||||
|
|
|
@ -34,7 +34,6 @@ export class UserRenoteMutingService {
|
|||
|
||||
@bindThis
|
||||
public async mute(user: MiUser, target: MiUser, expiresAt: Date | null = null): Promise<void> {
|
||||
|
||||
// フォロー解除できない(=リノートミュートもできない)ユーザーの場合
|
||||
if (
|
||||
this.serverSettings.forciblyFollowedUsers.includes(target.id) &&
|
||||
|
|
Loading…
Reference in New Issue