the trouble with liking things is you change your mind and then
my log fills up with undo commands
This commit is contained in:
parent
f5f334ba31
commit
3cf015d636
1 changed files with 5 additions and 3 deletions
8
honk.go
8
honk.go
|
|
@ -346,12 +346,14 @@ func inbox(w http.ResponseWriter, r *http.Request) {
|
||||||
log.Printf("unknown undo no object")
|
log.Printf("unknown undo no object")
|
||||||
} else {
|
} else {
|
||||||
what, _ := jsongetstring(obj, "type")
|
what, _ := jsongetstring(obj, "type")
|
||||||
if what != "Follow" {
|
switch what {
|
||||||
log.Printf("unknown undo: %s", what)
|
case "Follow":
|
||||||
} else {
|
|
||||||
log.Printf("updating honker undo: %s", who)
|
log.Printf("updating honker undo: %s", who)
|
||||||
db := opendatabase()
|
db := opendatabase()
|
||||||
db.Exec("update honkers set flavor = 'undub' where xid = ? and flavor = 'dub'", who)
|
db.Exec("update honkers set flavor = 'undub' where xid = ? and flavor = 'dub'", who)
|
||||||
|
case "Like":
|
||||||
|
default:
|
||||||
|
log.Printf("unknown undo: %s", what)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue