From f70cf5893bb775625e79ed959721ede03e34a108 Mon Sep 17 00:00:00 2001 From: Minteck Date: Mon, 11 Jul 2022 18:54:47 +0200 Subject: Update --- Application/TransactionsList/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Application/TransactionsList/index.php') diff --git a/Application/TransactionsList/index.php b/Application/TransactionsList/index.php index 64d2d2a..d4c5691 100644 --- a/Application/TransactionsList/index.php +++ b/Application/TransactionsList/index.php @@ -44,8 +44,8 @@ foreach ($list as $id) { $item["author"] = [ "id" => $item["author"], - "name" => $users[$item["author"]] ?? $item["author"], - "avatar" => "https://account.minteck.org/hub/api/rest/avatar/" . $item["author"] . "?dpr=2&size=48" + "name" => $item["name"] ?? $users[$item["author"]] ?? $item["author"], + "avatar" => $item["picture"] ?? "https://privateauth.equestria.dev/hub/api/rest/avatar/" . $item["author"] . "?dpr=2&size=48" ]; $item["date"] = [ "absolute" => $item["date"], -- cgit