aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2024-12-27 15:38:19 +0000
committerr <r@freesoftwareextremist.com>2024-12-27 15:38:19 +0000
commitd171b6c2d50500cdfd2f3308bf82a5f79e22cd8b (patch)
tree07ac6b69ac781358b59451ec0f3086d9f3d6c4b6
parent68d7acc2f7266c47001445229ff235546c8c71b4 (diff)
downloadbloat-d171b6c2d50500cdfd2f3308bf82a5f79e22cd8b.tar.gz
bloat-d171b6c2d50500cdfd2f3308bf82a5f79e22cd8b.zip
Include "status" in the list of supported notification typesHEADmaster
-rw-r--r--service/service.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/service.go b/service/service.go
index 2275dfb..90a28d5 100644
--- a/service/service.go
+++ b/service/service.go
@@ -485,7 +485,7 @@ func (s *service) NotificationPage(c *client, maxID string,
// Explicitly include the supported types.
// For now, only Pleroma supports this option, Mastadon
// will simply ignore the unknown params.
- includes = []string{"follow", "follow_request", "mention", "reblog", "favourite"}
+ includes = []string{"follow", "follow_request", "mention", "reblog", "favourite", "status"}
}
if c.s.Settings.AntiDopamineMode {
excludes = append(excludes, "follow", "favourite", "reblog")