Skip to content

Commit 7df0b3b

Browse files
tmandryMark-Simulacrum
authored andcommitted
Fix unresolved_concerns count in individual API
Oops.
1 parent 4616cbd commit 7df0b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nag.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pub fn individual_nags(username: &str) -> DashResult<(GitHubUser, Vec<Individual
124124

125125
let unresolved_concerns = fcp_concern::table
126126
.filter(fcp_concern::fk_proposal.eq(proposal.id))
127-
.filter(fcp_concern::fk_resolved_comment.is_not_null())
127+
.filter(fcp_concern::fk_resolved_comment.is_null())
128128
.count()
129129
.get_result::<i64>(conn)? as i32;
130130

0 commit comments

Comments
 (0)