Nextcloud 20.0.2 tries to use emojis where it should not

Nextcloud version: 20.0.2
Operating system and version: Armbian 20.11
Apache or nginx version: nginx 1.14.2
PHP version: 7.3

Since I upgraded NC from 10.0.5 to 20.0.2, it tries to use the Noto Emoji font in certain parts, where it should not. For example, in the Settings overview I see this:

If I inspect the element and remove 'Noto Color Emoji' from css/core/6be2-396b-css-variables.css with my browser, I get the correct text render. As you can see, the exaggerated spacing is gone and the arrow is not an emoji anymore:

Is this the first time you’ve seen this error?: Y

Steps to replicate it:

  1. Install Nextcloud 20
  2. Browse your NC instance with Noto Emoji installed on your system

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'instanceid' => '',
  'passwordsalt' => '',
  'secret' => '',
  'trusted_domains' => 
  array (
    0 => '',
  ),
  'datadirectory' => '/media/extData/ncdata',
  'dbtype' => 'mysql',
  'version' => '20.0.2.2',
  'overwrite.cli.url' => '',
  'overwriteprotocol' => 'https',
  'htaccess.RewriteBase' => '/',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => '',
  'dbpassword' => '',
  'installed' => true,
  'filelocking.enabled' => true,
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => '/var/run/redis/redis-server.sock',
    'port' => 0,
    'timeout' => 0.0,
  ),
  'maintenance' => false,
  'theme' => '',
  'loglevel' => 2,
  'mail_smtpmode' => 'sendmail',
  'mail_sendmailmode' => 'smtp',
  'mail_from_address' => 'nextcloud',
  'mail_domain' => '',
  'updater.secret' => '',
  'app_install_overwrite' => 
  array (
    0 => 'calendar',
  ),
);

It happens even after a complete Nextcloud reinstallation, it’s not due to an update leftover. Should I file a bug on Github?

No response?