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