Skip to content

Commit

Permalink
Fix: Made the filter on the vulnerabilities page work for report_ids.
Browse files Browse the repository at this point in the history
The filter on the vulnerabilities page did not work for report_ids.
  • Loading branch information
jhelmold authored and timopollmeier committed Jan 28, 2025
1 parent 014cf7f commit cf6433c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -56305,7 +56305,7 @@ vuln_iterator_extra_with (const gchar *task_id, const gchar *report_id,
if (report_id && strcmp (report_id, ""))
{
report_t report = 0;
find_report_with_permission (task_id, &report, "get_reports");
find_report_with_permission (report_id, &report, "get_reports");
g_string_append_printf (ret, " AND results.report = %llu", report);
}

Expand Down

0 comments on commit cf6433c

Please sign in to comment.