mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Fix multi-user timeline search parameters
This commit is contained in:
parent
83a32a67a5
commit
16f50621b5
2 changed files with 4 additions and 4 deletions
|
|
@ -87,7 +87,7 @@ proc genQueryUrl*(query: Query; onlyParam=false): string =
|
|||
if query.fromUser.len > 0:
|
||||
result = "/" & query.fromUser.join(",")
|
||||
|
||||
if query.fromUser.len > 1:
|
||||
if query.fromUser.len > 1 and query.kind == posts:
|
||||
return result & "?"
|
||||
|
||||
if query.kind notin {custom, users}:
|
||||
|
|
|
|||
Loading…
Reference in a new issue