Set irreversible to false for filters

This commit is contained in:
r 2024-04-21 14:34:44 +00:00
parent cd86ea6af1
commit e3a9861a8c

View file

@ -1076,7 +1076,7 @@ func (s *service) UnBookmark(c *client, id string) (err error) {
func (svc *service) Filter(c *client, phrase string, wholeWord bool) (err error) {
fctx := []string{"home", "notifications", "public", "thread"}
return c.AddFilter(c.ctx, phrase, fctx, true, wholeWord, nil)
return c.AddFilter(c.ctx, phrase, fctx, false, wholeWord, nil)
}
func (svc *service) UnFilter(c *client, id string) (err error) {