1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-11-23 14:46:40 +09:00

fix(backend): ノートを連合する際にリモートユーザーのacctの大小文字を区別して処理している問題を修正 (misskey-dev#14880)

Cherry-picked from 6718a54f6fce29edbe2755c31a119e4468fc56e2

Co-authored-by: Laura Hausmann <laura@hausmann.dev>
This commit is contained in:
あわわわとーにゅ 2024-11-06 09:06:44 +09:00
parent 45faba3567
commit 57753225ea
No known key found for this signature in database
GPG Key ID: 6AFBBF529601C1DB

View File

@ -410,7 +410,7 @@ export class MfmService {
mention: (node) => {
const a = doc.createElement('a');
const { username, host, acct } = node.props;
const remoteUserInfo = mentionedRemoteUsers.find(remoteUser => remoteUser.username === username && remoteUser.host === host);
const remoteUserInfo = mentionedRemoteUsers.find(remoteUser => remoteUser.username.toLowerCase() === username.toLowerCase() && remoteUser.host?.toLowerCase() === host?.toLowerCase());
a.setAttribute('href', remoteUserInfo ? (remoteUserInfo.url ? remoteUserInfo.url : remoteUserInfo.uri) : `${this.config.url}/${acct}`);
a.className = 'u-url mention';
a.textContent = acct;