Openstatus www.openstatus.dev

fix follow redirect bug (#1568)

* fix follow redirect bug

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
80dc85a8 6615575b

+2 -1
+2 -1
apps/workflows/src/cron/checker.ts
··· 219 219 } 220 220 : undefined, 221 221 retry: row.retry || 3, 222 - followRedirects: row.followRedirects || true, 222 + followRedirects: 223 + row.followRedirects === null ? true : row.followRedirects, 223 224 }; 224 225 } 225 226 if (row.jobType === "tcp") {