We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f59d64 commit 9270232Copy full SHA for 9270232
packages/ozone/src/api/moderation/emitEvent.ts
@@ -121,7 +121,9 @@ const handleModerationEvent = async ({
121
])
122
}
123
124
- if (isTakedownEvent || isReverseTakedownEvent) {
+ const isTakedownOrReverseTakedownEvent =
125
+ isTakedownEvent || isReverseTakedownEvent
126
+ if (isTakedownOrReverseTakedownEvent || isLabelEvent) {
127
const status = await moderationService.getStatus(subject)
128
129
if (status?.takendown && isTakedownEvent) {
0 commit comments