Skip to content

Commit

Permalink
Fixed: fetch_error is now on resource
Browse files Browse the repository at this point in the history
  • Loading branch information
mnot committed Dec 16, 2023
1 parent 7149a8c commit ebae8e7
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.fetch_error == None %}
{% if resource.fetch_error == None %}
response incomplete
{% else %}
{{ resource.response.fetch_error.desc or "unknown problem" }}
{{ resource.fetch_error.desc or "unknown problem" }}
{% endif %}
</td>
{% endif %}
Expand Down

0 comments on commit ebae8e7

Please sign in to comment.