From f228716a28208d00490e3694b08ff69d0b67544d Mon Sep 17 00:00:00 2001 From: Jeremy BERTRAND Date: Tue, 27 Oct 2020 10:38:19 +0100 Subject: [PATCH] Replace Adorable Avatar API This commit replaces the API used to generate an Adorable Avatar due to the original one been shut down by its creator. See https://github.com/adorableio/avatars-api-middleware/issues/108 --- addon/components/adorable/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/components/adorable/index.js b/addon/components/adorable/index.js index 7500dbc..7b444a0 100644 --- a/addon/components/adorable/index.js +++ b/addon/components/adorable/index.js @@ -19,7 +19,7 @@ class AdorableAvatarComponent extends ImageAvatarComponent { } _adorableSrc(email, size) { - return `https://api.adorable.io/avatars/${size}/${email}`; + return `https://api.hello-avatar.com/adorables/${size}/${email}`; } }