summaryrefslogtreecommitdiff
path: root/packages/backend/src/services/blocking/create.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-12-09 23:58:30 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-12-09 23:58:30 +0900
commitc69b72e1999578cba15e34677ebd366482cba734 (patch)
tree624ac6500e36e3a7024a5ea19ae891ef86781d04 /packages/backend/src/services/blocking/create.ts
parentUpdate instance-mute.vue (diff)
downloadmisskey-c69b72e1999578cba15e34677ebd366482cba734.tar.gz
misskey-c69b72e1999578cba15e34677ebd366482cba734.tar.bz2
misskey-c69b72e1999578cba15e34677ebd366482cba734.zip
fix lint
Diffstat (limited to 'packages/backend/src/services/blocking/create.ts')
-rw-r--r--packages/backend/src/services/blocking/create.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/backend/src/services/blocking/create.ts b/packages/backend/src/services/blocking/create.ts
index 6aadc847a9..907e4c3116 100644
--- a/packages/backend/src/services/blocking/create.ts
+++ b/packages/backend/src/services/blocking/create.ts
@@ -36,7 +36,7 @@ export default async function(blocker: User, blockee: User) {
async function cancelRequest(follower: User, followee: User) {
const request = await FollowRequests.findOne({
followeeId: followee.id,
- followerId: follower.id
+ followerId: follower.id,
});
if (request == null) {
@@ -45,18 +45,18 @@ async function cancelRequest(follower: User, followee: User) {
await FollowRequests.delete({
followeeId: followee.id,
- followerId: follower.id
+ followerId: follower.id,
});
if (Users.isLocalUser(followee)) {
Users.pack(followee, followee, {
- detail: true
+ detail: true,
}).then(packed => publishMainStream(followee.id, 'meUpdated', packed));
}
if (Users.isLocalUser(follower)) {
Users.pack(followee, follower, {
- detail: true
+ detail: true,
}).then(packed => {
publishUserEvent(follower.id, 'unfollow', packed);
publishMainStream(follower.id, 'unfollow', packed);
@@ -79,7 +79,7 @@ async function cancelRequest(follower: User, followee: User) {
async function unFollow(follower: User, followee: User) {
const following = await Followings.findOne({
followerId: follower.id,
- followeeId: followee.id
+ followeeId: followee.id,
});
if (following == null) {
@@ -101,7 +101,7 @@ async function unFollow(follower: User, followee: User) {
// Publish unfollow event
if (Users.isLocalUser(follower)) {
Users.pack(followee, follower, {
- detail: true
+ detail: true,
}).then(packed => {
publishUserEvent(follower.id, 'unfollow', packed);
publishMainStream(follower.id, 'unfollow', packed);