diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-03-28 17:02:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-03-28 17:02:02 +0900 |
| commit | c26b5fe05794d6f24d3db91b2acecade81984d93 (patch) | |
| tree | 4598a4e8473ebb5e67245b9218c90740184887e1 /src/web/app/common/scripts/parse-search-query.ts | |
| parent | wip (diff) | |
| download | sharkey-c26b5fe05794d6f24d3db91b2acecade81984d93.tar.gz sharkey-c26b5fe05794d6f24d3db91b2acecade81984d93.tar.bz2 sharkey-c26b5fe05794d6f24d3db91b2acecade81984d93.zip | |
wip
Diffstat (limited to 'src/web/app/common/scripts/parse-search-query.ts')
| -rw-r--r-- | src/web/app/common/scripts/parse-search-query.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/parse-search-query.ts b/src/web/app/common/scripts/parse-search-query.ts index 81444c8b01..4f09d2b93f 100644 --- a/src/web/app/common/scripts/parse-search-query.ts +++ b/src/web/app/common/scripts/parse-search-query.ts @@ -11,7 +11,7 @@ export default function(qs: string) { q['includeUserUsernames'] = value.split(','); break; case 'exclude_user': - q['exclude_userUsernames'] = value.split(','); + q['excludeUserUsernames'] = value.split(','); break; case 'follow': q['following'] = value == 'null' ? null : value == 'true'; |