From d12c81e51f7881e383705fe35ae87593e760185d Mon Sep 17 00:00:00 2001 From: Bruno Antunes Date: Wed, 21 Feb 2024 10:33:30 +0000 Subject: [PATCH] Forgot to trim the string --- src/www/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/js/app.js b/src/www/js/app.js index 55ca2cd8..66dae9c1 100644 --- a/src/www/js/app.js +++ b/src/www/js/app.js @@ -138,7 +138,7 @@ new Vue({ const clients = await this.api.getClients(); this.clients = clients.map((client) => { if (client.name.includes('@') && client.name.includes('.')) { - client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase())}.jpg`; + client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase().trim())}.jpg`; } if (!this.clientsPersist[client.id]) {