fix: aliasesの区切り文字が一致していないのを修正 (#16622)

* fix: aliasesの区切り文字が一致していないのを修正

* fix CHANGELOG.md

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
おさむのひと 2025-10-09 09:29:09 +09:00 committed by GitHub
parent 21ed2e3002
commit 37526de323
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -4,12 +4,12 @@
-
### Client
- Fix: カスタム絵文字画面(beta)のaliasesで使用される区切り文字が一致していないのを修正 #15614
- Fix: バナー画像の幅が表示領域と一致していない問題を修正
### Server
-
## 2025.10.0
### NOTE

View File

@ -503,7 +503,7 @@ function refreshGridItems() {
name: it.name,
host: it.host ?? '',
category: it.category ?? '',
aliases: it.aliases.join(','),
aliases: it.aliases.join(' '),
license: it.license ?? '',
isSensitive: it.isSensitive,
localOnly: it.localOnly,