Skip to content

Commit 231c2c2

Browse files
authored
fix(backend): following/invalidateでフォロワーを解除しようとしているユーザーの情報を返すように (misskey-dev#15430)
1 parent 2f8d020 commit 231c2c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- Enhance: クライアントエラー画面の多言語対応
1010

1111
### Server
12-
-
12+
- Fix: `following/invalidate`でフォロワーを解除しようとしているユーザーの情報を返すように
1313

1414

1515
## 2025.2.0

packages/backend/src/server/api/endpoints/following/invalidate.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
9696

9797
await this.userFollowingService.unfollow(follower, followee);
9898

99-
return await this.userEntityService.pack(followee.id, me);
99+
return await this.userEntityService.pack(follower.id, me);
100100
});
101101
}
102102
}

0 commit comments

Comments
 (0)