Fix gravatar on reflog
Diff
src/methods/filters.rs | 4 ++++
templates/repo/log.html | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
@@ -9,3 +9,7 @@
pub fn hex(s: &[u8]) -> Result<String, askama::Error> {
Ok(hex::encode(s))
}
pub fn md5(s: &str) -> Result<String, askama::Error> {
Ok(hex::encode(&md5::compute(s).0))
}
@@ -22,7 +22,7 @@
</td>
<td><a href="/{{ repo.display() }}/commit/?id={{ commit.hash|hex }}">{{ commit.summary }}</a></td>
<td>
<img src="https://www.gravatar.com/avatar/{{ commit.author.email }}?s=13&d=retro" width="13" height="13">
<img src="https://www.gravatar.com/avatar/{{ commit.author.email|md5 }}?s=13&d=retro" width="13" height="13">
{{ commit.author.name }}
</td>
</tr>