Skip to content

Commit

Permalink
Fix: Do not skip first delta result with ignore_pagination
Browse files Browse the repository at this point in the history
When getting a delta report with the ignore_pagination option, the first
result is no longer erroneously skipped.
  • Loading branch information
timopollmeier committed Jul 26, 2023
1 parent 5481353 commit 9834847
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 @@ -28266,7 +28266,7 @@ print_report_xml_start (report_t report, report_t delta, task_t task,
if (delta && get->details)
{
if (print_report_delta_xml (out, &results, &delta_results, delta_states,
ignore_pagination ? 1 : first_result,
ignore_pagination ? 0 : first_result,
ignore_pagination ? -1 : max_results,
task, notes,
notes_details, overrides, overrides_details,
Expand Down

0 comments on commit 9834847

Please sign in to comment.