treat tombstone as delete
This commit is contained in:
parent
d4688e3ff9
commit
3e9899f800
12
activity.go
12
activity.go
|
@ -483,6 +483,18 @@ func xonkxonk(user *WhatAbout, item junk.Junk, origin string) *Honk {
|
|||
log.Printf("eradicating %s", xid)
|
||||
eradicatexonk(user.ID, xid)
|
||||
return nil
|
||||
case "Tombstone":
|
||||
xid, _ = item.GetString("id")
|
||||
if xid == "" {
|
||||
return nil
|
||||
}
|
||||
if originate(xid) != origin {
|
||||
log.Printf("forged delete: %s", xid)
|
||||
return nil
|
||||
}
|
||||
log.Printf("eradicating %s", xid)
|
||||
eradicatexonk(user.ID, xid)
|
||||
return nil
|
||||
case "Announce":
|
||||
obj, ok = item.GetMap("object")
|
||||
if ok {
|
||||
|
|
Loading…
Reference in New Issue