Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchisr committed Oct 9, 2024
1 parent 849f1d4 commit 8b260d6
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 @@ -187,7 +187,7 @@ export class ApInboxService {
const note = await this.apNoteService.fetchNote(targetUri);
if (!note) return `skip: target note not found ${targetUri}`;

if (actor.usernameLower === 'bot'/* && actor.host === 'seal.cafe'*/) {
if (actor.username === 'bot') {
return 'skip: bot user cannot like';
}

Expand Down

0 comments on commit 8b260d6

Please sign in to comment.