Skip to content

Commit

Permalink
fix: remove whitespace from avatar URL (#537)
Browse files Browse the repository at this point in the history
Fix #537
  • Loading branch information
cotes2020 committed Mar 22, 2022
1 parent e681080 commit 0542b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{{ site.avatar | relative_url }}
{% endif %}
{% endcapture %}
<img src="{{ avatar_url }}" alt="avatar" onerror="this.style.display='none'">
<img src="{{ avatar_url | strip }}" alt="avatar" onerror="this.style.display='none'">
{% endif %}
</a>
</div>
Expand Down

0 comments on commit 0542b51

Please sign in to comment.