Fix: Unexpected remote user is selected (#3032)

This commit is contained in:
MeiMei 2018-10-28 07:49:58 +09:00 committed by syuilo
parent 479d7e0087
commit 518646b925

View file

@ -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();