Skip to content

Commit

Permalink
✨ Allow 0 priority score filter
Browse files Browse the repository at this point in the history
  • Loading branch information
foysalit committed Feb 6, 2025
1 parent d3e6d28 commit ced6495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ozone/src/mod-service/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ export class ModerationService {
)
}

if (minPriorityScore != null && minPriorityScore > 0) {
if (minPriorityScore != null && minPriorityScore >= 0) {
builder = builder.where(
'moderation_subject_status.priorityScore',
'>=',
Expand Down

0 comments on commit ced6495

Please sign in to comment.