we don't care about dislikes

This commit is contained in:
Ted Unangst 2023-07-02 14:47:00 -04:00
parent 5d03fbac6a
commit 63f6a949bc
1 changed files with 1 additions and 1 deletions

2
web.go
View File

@ -364,7 +364,7 @@ func inbox(w http.ResponseWriter, r *http.Request) {
} }
what, _ := j.GetString("type") what, _ := j.GetString("type")
obj, _ := j.GetString("object") obj, _ := j.GetString("object")
if what == "Like" || (what == "EmojiReact" && originate(obj) != serverName) { if what == "Like" || what == "Dislike" || (what == "EmojiReact" && originate(obj) != serverName) {
return return
} }
who, _ := j.GetString("actor") who, _ := j.GetString("actor")