Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kozakura913 committed Dec 19, 2024
1 parent 29998a2 commit bdbc2eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ export class DeliverProcessorService {
this.quarantinedHostsCache.set(quarantinedHosts);
}
if (quarantinedHosts.map(x => x.host).includes(this.utilityService.toPuny(host))) {
console.log('quarantinedHosts public ? ' + job.data.isPublicContent);
console.log(job.data.content);
if (!job.data.isPublicContent) {
return 'skip (quarantined)';
}
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/queue/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type DeliverJobData = {
to: string;
/** whether it is sharedInbox */
isSharedInbox: boolean;
/** whether it is sharedInbox */
/** Activity is Public */
isPublicContent: boolean;
};

Expand Down

0 comments on commit bdbc2eb

Please sign in to comment.