Update show.ts

This commit is contained in:
syuilo 2018-03-29 21:45:43 +09:00 committed by GitHub
parent 78f7464891
commit 228d3141a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,7 +66,7 @@ module.exports = (params, me) => new Promise(async (res, rej) => {
// Get 'host' parameter
const [host, hostErr] = $(params.host).optional.string().$;
if (hostErr) return rej('invalid username param');
if (hostErr) return rej('invalid host param');
if (userId === undefined && typeof username !== 'string') {
return rej('userId or pair of username and host is required');