mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 14:49:32 +00:00
Add spaces filter, remove broken filters
This commit is contained in:
parent
f038b53fa2
commit
4979d07f2e
2 changed files with 3 additions and 6 deletions
|
|
@ -6,10 +6,9 @@ import types
|
|||
const
|
||||
validFilters* = @[
|
||||
"media", "images", "twimg", "videos",
|
||||
"native_video", "consumer_video", "pro_video",
|
||||
"native_video", "consumer_video", "spaces",
|
||||
"links", "news", "quote", "mentions",
|
||||
"replies", "retweets", "nativeretweets",
|
||||
"verified", "safe"
|
||||
"replies", "retweets", "nativeretweets"
|
||||
]
|
||||
|
||||
emptyQuery* = "include:nativeretweets"
|
||||
|
|
|
|||
|
|
@ -10,14 +10,12 @@ const toggles = {
|
|||
"media": "Media",
|
||||
"videos": "Videos",
|
||||
"news": "News",
|
||||
"verified": "Verified",
|
||||
"native_video": "Native videos",
|
||||
"replies": "Replies",
|
||||
"links": "Links",
|
||||
"images": "Images",
|
||||
"safe": "Safe",
|
||||
"quote": "Quotes",
|
||||
"pro_video": "Pro videos"
|
||||
"spaces": "Spaces"
|
||||
}.toOrderedTable
|
||||
|
||||
proc renderSearch*(): VNode =
|
||||
|
|
|
|||
Loading…
Reference in a new issue