mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 23:17:33 -07:00
Fix: Unexpected remote user is selected (#3032)
This commit is contained in:
parent
6b6e49358d
commit
4b9bf727fb
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ export default async (username: string, _host: string, option?: any): Promise<IU
|
|||
const usernameLower = username.toLowerCase();
|
||||
|
||||
if (_host == null) {
|
||||
return await User.findOne({ usernameLower });
|
||||
return await User.findOne({ usernameLower, host: null });
|
||||
}
|
||||
|
||||
const hostAscii = toASCII(_host).toLowerCase();
|
||||
|
|
Loading…
Reference in a new issue