Fix Gravatar support

This commit is contained in:
Bruno Antunes 2024-02-21 10:23:53 +00:00
parent 1412f63dfa
commit f61b187402
4 changed files with 11 additions and 3 deletions

View File

@ -502,7 +502,7 @@
<script src="./js/vendor/vue-i18n.min.js"></script>
<script src="./js/vendor/apexcharts.min.js"></script>
<script src="./js/vendor/vue-apexcharts.min.js"></script>
<script src="./js/vendor/sha512.min.js"></script>
<script src="./js/vendor/sha256.min.js"></script>
<script src="./js/vendor/timeago.full.min.js"></script>
<script src="./js/api.js"></script>
<script src="./js/i18n.js"></script>

View File

@ -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://www.gravatar.com/avatar/${sha512(client.name)}?d=blank`;
client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase())}.jpg`;
}
if (!this.clientsPersist[client.id]) {

9
src/www/js/vendor/sha256.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long