diff options
Diffstat (limited to 'Application/TransactionsList/index.php')
-rw-r--r-- | Application/TransactionsList/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
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"], |