Skip to content

Commit

Permalink
fix?: target URI
Browse files Browse the repository at this point in the history
  • Loading branch information
Esurio committed Aug 3, 2024
1 parent c5881c7 commit 9345ee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/activitypub/ApInboxService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ export class ApInboxService {

try {
// 既に同じURIを持つものが登録されていないかチェック
const exist = await this.apNoteService.fetchNote(fromRelay ? targetUri : uri);
const exist = await this.apNoteService.fetchNote(fromRelay ? target : uri);
if (exist) {
return;
}
Expand Down

0 comments on commit 9345ee5

Please sign in to comment.