From 6f7edc3b1d3c825106460a398e72b9ff7c1cdb6b Mon Sep 17 00:00:00 2001 From: gutmet Date: Wed, 23 Nov 2022 21:01:18 +0100 Subject: [PATCH] default ignore boosts to true because they suck --- swill.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swill.go b/swill.go index eccd984..7c7fd5f 100644 --- a/swill.go +++ b/swill.go @@ -297,7 +297,7 @@ func userTimeline(f timelineFlags, args []string) error { func userTimelineCommand() (goutil.CommandFlagsInit, goutil.CommandFunc) { f := timelineFlags{} flagsInit := func(s *flag.FlagSet) { - s.BoolVar(&f.ignoreBoosts, "ignore-boosts", false, "") + s.BoolVar(&f.ignoreBoosts, "ignore-boosts", true, "") } return flagsInit, func(args []string) error { return userTimeline(f, args) } }