mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 03:17:38 -07:00
Skip mention user lookup for local users
This commit is contained in:
parent
1d543b5bf8
commit
b04619e007
1 changed files with 6 additions and 5 deletions
|
@ -193,16 +193,17 @@ export async function getSubjectHostFromUriAndUsernameCached(uri: string, userna
|
|||
const hostname = new URL(uri).hostname;
|
||||
username = username.substring(1); // remove leading @ from username
|
||||
|
||||
if (hostname === config.hostname) {
|
||||
// user is local, return local account domain
|
||||
return config.domain;
|
||||
}
|
||||
|
||||
const user = await Users.findOneBy({
|
||||
usernameLower: username.toLowerCase(),
|
||||
host: hostname
|
||||
});
|
||||
|
||||
if (user) {
|
||||
return user.host;
|
||||
}
|
||||
|
||||
return await uriHostCache.fetch(uri, async () => await getSubjectHostFromUri(uri) ?? hostname);
|
||||
return user ? user.host : await uriHostCache.fetch(uri, async () => await getSubjectHostFromUri(uri) ?? hostname);
|
||||
}
|
||||
|
||||
export async function getSubjectHostFromAcct(acct: string): Promise<string | null> {
|
||||
|
|
Loading…
Reference in a new issue