diff options
Diffstat (limited to 'src/codegen/emoticons.php')
| -rw-r--r-- | src/codegen/emoticons.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/src/codegen/emoticons.php b/src/codegen/emoticons.php index 51b9ed6..5b6f51f 100644 --- a/src/codegen/emoticons.php +++ b/src/codegen/emoticons.php @@ -4,7 +4,7 @@ $em_dir = SRCDIR . "/static/emoticons";  $emoticons = array_map(      fn($i) => [          pathinfo($i, PATHINFO_FILENAME), -        getimagesize($em_dir . "/" . $i)["3"] +        ...array_slice(getimagesize($em_dir . "/" . $i), 0, 2),      ],      array_values(          array_filter( @@ -32,5 +32,5 @@ return [          json_encode([              $emoticons,              $emoticons_alpha_lookup, -        ], JSON_PRETTY_PRINT) . ";\n", +        ]) . ";\n",  ];  |