This commit is contained in:
syuilo 2018-11-11 18:26:09 +09:00
parent 37bfb79123
commit 15a2881083
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
import { toUnicode } from 'punycode'; import { toUnicode } from 'punycode';
export default (host: string) => { export default (host: string) => {
if (host == null) return null;
return toUnicode(host).toLowerCase(); return toUnicode(host).toLowerCase();
}; };

View file

@ -28,7 +28,7 @@ export const meta = {
}, },
host: { host: {
validator: $.str.optional, validator: $.str.optional.nullable,
}, },
includeReplies: { includeReplies: {