Skip to content

Commit

Permalink
Fixed: ref to http_error instead of fetch_error
Browse files Browse the repository at this point in the history
Fixes #341.
  • Loading branch information
mnot committed Dec 2, 2023
1 parent 365712f commit f148262
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redbot/formatter/templates/response_multi_finish.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@
</td>
{% else %}
<td colspan="11">
{% if resource.response.http_error == None %}
{% if resource.response.fetch_error == None %}
response incomplete
{% else %}
{{ resource.response.http_error.desc or "unknown problem" }}
{{ resource.response.fetch_error.desc or "unknown problem" }}
{% endif %}
</td>
{% endif %}
Expand Down

0 comments on commit f148262

Please sign in to comment.