From 8e3ddbcfaf357b5e2d7840232a33b695092b4f49 Mon Sep 17 00:00:00 2001 From: chaos <72168435+qtchaos@users.noreply.github.com> Date: Thu, 16 Nov 2023 01:37:54 +0200 Subject: [PATCH] Update avatar URLs to use Crafatar API. (#877) --- theseus_gui/src/components/ui/AccountsCard.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/theseus_gui/src/components/ui/AccountsCard.vue b/theseus_gui/src/components/ui/AccountsCard.vue index 473c63e07..0643bfc85 100644 --- a/theseus_gui/src/components/ui/AccountsCard.vue +++ b/theseus_gui/src/components/ui/AccountsCard.vue @@ -11,7 +11,7 @@ :size="mode === 'expanded' ? 'xs' : 'sm'" :src=" selectedAccount - ? `https://mc-heads.net/avatar/${selectedAccount.id}/128` + ? `https://crafatar.com/avatars/${selectedAccount.id}?size=128&overlay` : 'https://launcher-files.modrinth.com/assets/steve_head.png' " /> @@ -24,7 +24,7 @@ :class="{ expanded: mode === 'expanded', isolated: mode === 'isolated' }" >
Selected
@@ -42,7 +42,10 @@