From c79bb71e7694d4674c28a7e1192dd644e41fbfdb Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Thu, 11 Dec 2025 01:11:23 +0500 Subject: fix: use lazy loading for emotes --- lib/emote.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/emote.php b/lib/emote.php index 14f6088..4ad71c4 100644 --- a/lib/emote.php +++ b/lib/emote.php @@ -268,7 +268,7 @@ function html_display_emotes(array $emotes, int $scale = 3) // icon echo '
'; $scale = $emote_wall ? "3" : ((string) $scale); - echo "{$e->code}"; + echo "{$e->code}"; echo '
'; // info @@ -299,7 +299,7 @@ function html_display_emoteset(array $emotesets) echo '
'; foreach ($es->emotes as $e) { - echo "{$e->code}"; + echo "{$e->code}"; } echo '
'; -- cgit v1.2.3