the trouble with liking things is you change your mind and then

my log fills up with undo commands
master
Ted Unangst 6 years ago
parent f5f334ba31
commit 3cf015d636

@ -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…
Cancel
Save