diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-16 23:33:11 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-16 23:33:11 +0900 |
| commit | e5c350d7405c04238883b23f5cbfa2c16fe3c51f (patch) | |
| tree | 0fa1574376b025a55edd9d368c514b3824d729d5 /src/server/api/endpoints/users/notes.ts | |
| parent | Improve object storage key (diff) | |
| download | sharkey-e5c350d7405c04238883b23f5cbfa2c16fe3c51f.tar.gz sharkey-e5c350d7405c04238883b23f5cbfa2c16fe3c51f.tar.bz2 sharkey-e5c350d7405c04238883b23f5cbfa2c16fe3c51f.zip | |
Fix bug
Diffstat (limited to 'src/server/api/endpoints/users/notes.ts')
| -rw-r--r-- | src/server/api/endpoints/users/notes.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/server/api/endpoints/users/notes.ts b/src/server/api/endpoints/users/notes.ts index c60050d3cd..ff7855bde0 100644 --- a/src/server/api/endpoints/users/notes.ts +++ b/src/server/api/endpoints/users/notes.ts @@ -16,17 +16,13 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => if (usernameErr) return rej('invalid username param'); if (userId === undefined && username === undefined) { - return rej('userId or pair of username and host is required'); + return rej('userId or username is required'); } // Get 'host' parameter const [host, hostErr] = $.str.optional.get(params.host); if (hostErr) return rej('invalid host param'); - if (userId === undefined && host === undefined) { - return rej('userId or pair of username and host is required'); - } - // Get 'includeReplies' parameter const [includeReplies = true, includeRepliesErr] = $.bool.optional.get(params.includeReplies); if (includeRepliesErr) return rej('invalid includeReplies param'); |