aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorFChannel <=>2021-01-28 17:02:10 -0800
committerFChannel <=>2021-01-28 17:02:10 -0800
commite06b4e233382155808366538ed9075c3eeb351d2 (patch)
treed1214ad14ff428ff598680547bd33605ee4e4bb0 /main.go
parent51521e934b6d80f3b7267410e592fbef3580012f (diff)
if OP, send to OP followers
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/main.go b/main.go
index cd730c4..1085698 100644
--- a/main.go
+++ b/main.go
@@ -1040,6 +1040,11 @@ func CreateObject(objType string) ObjectBase {
}
func AddFollowersToActivity(db *sql.DB, activity Activity) Activity{
+
+ if len(activity.To) < 1 {
+ activity.To = append(activity.To, activity.Actor.Id)
+ }
+
for _, e := range activity.To {
aFollowers := GetActorCollection(e + "/followers")
for _, k := range aFollowers.Items {