From bac358b23661260d35f559c0a48ee23c81a8e5cc Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 21 Nov 2022 16:28:48 -0800 Subject: [PATCH] nostril-query: fix limit:0 queries --- nostril-query | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nostril-query b/nostril-query index 90e772a..4227352 100755 --- a/nostril-query +++ b/nostril-query @@ -32,23 +32,23 @@ if args.authors: if args.ids: filt["ids"] = args.ids.split(",") -if args.limit: +if args.limit is not None: filt["limit"] = args.limit if args.generic: (tag, val) = args.generic filt["#" + tag] = val.split(",") -if args.hashtag: +if args.hashtag is not None: filt["#t"] = args.hashtag.split(",") -if args.mentions: +if args.mentions is not None: filt["#p"] = args.mentions.split(",") -if args.references: +if args.references is not None: filt["#e"] = args.references.split(",") -if args.kinds: +if args.kinds is not None: kinds = args.kinds.split(",") filt["kinds"] = [a for a in map(lambda s: int(s), kinds)]