From d6f23b54e3ec31c7c9c48d394b5b7ac13f726192 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Thu, 8 Nov 2018 13:38:08 -0500 Subject: [PATCH] Add RSS to outbound service nodeinfo --- nodeinfo.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nodeinfo.go b/nodeinfo.go index 8c53731..b2c58fa 100644 --- a/nodeinfo.go +++ b/nodeinfo.go @@ -32,8 +32,10 @@ func nodeInfoConfig(cfg *config.Config) *nodeinfo.Config { nodeinfo.ProtocolActivityPub, }, Services: nodeinfo.Services{ - Inbound: []nodeinfo.NodeService{}, - Outbound: []nodeinfo.NodeService{}, + Inbound: []nodeinfo.NodeService{}, + Outbound: []nodeinfo.NodeService{ + nodeinfo.ServiceRSS, + }, }, Software: nodeinfo.SoftwareInfo{ Name: strings.ToLower(serverSoftware),