Fixed that bad id bug for AP follow events
All checks were successful
/ docker (push) Successful in 1m44s

This commit is contained in:
Melody Becker 2025-06-12 17:19:51 +02:00
parent 9e23f82e55
commit cfe5047433
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
2 changed files with 3 additions and 1 deletions

View file

@ -15,6 +15,7 @@ func BuildActivitypubRouter() http.Handler {
router.HandleFunc("/activity/delete/{id}", activityDelete)
router.HandleFunc("/activity/reject/{id}", activityReject)
router.HandleFunc("/activity/update/{id}", activityUpdate)
router.HandleFunc("/activity/follow/{id}", activityFollow)
router.HandleFunc("/note/{id}", objectNote)
router.HandleFunc("/note/{id}/reactions", noteReactions)
return router