diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-04 01:09:48 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-04 01:09:48 +0530 |
commit | 7473964721c349a7f41c6fcd48df14d570cee676 (patch) | |
tree | fcd0007b4688009f4635d1472393b60f11d309b1 /cmd/search.go | |
parent | e143dc8955de158365e193882cb1b881abaa2d94 (diff) |
added --search-nsfw flag to search nsfw titles
Diffstat (limited to 'cmd/search.go')
-rw-r--r-- | cmd/search.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/search.go b/cmd/search.go index 391919e..053cece 100644 --- a/cmd/search.go +++ b/cmd/search.go @@ -81,5 +81,6 @@ func init() { searchCmd.PersistentFlags().BoolVarP(&mangaMode, "manga", "m", false, "Use manga mode") searchCmd.PersistentFlags().IntVarP(&mal.SearchLength, "search-length", "n", 10, "Amount of search results to load") searchCmd.PersistentFlags().IntVarP(&mal.SearchOffset, "search-offset", "o", 0, "Offset for the search results") + searchCmd.PersistentFlags().BoolVarP(&mal.SearchNSFW, "search-nsfw", "", false, "Include NSFW-rated items in search results") searchCmd.PersistentFlags().BoolVarP(&queryOnlyMode, "query", "q", false, "Query only (don't update data)") } |