jlelse
/
jsonpub
Archived
1
Fork 0

Remove return statement

This commit is contained in:
Jan-Lukas Else 2020-02-24 22:12:03 +01:00
parent 79db49d29c
commit dc13138cd8
1 changed files with 2 additions and 2 deletions

View File

@ -83,12 +83,12 @@ func Serve() {
_, err = webmentionClient.SendWebmention(endpoint, id, inReplyTo)
if err != nil {
log.Println("Sending webmention to " + inReplyTo + " failed")
return
}
} else {
log.Println("Sent webmention to " + inReplyTo)
}
}
}
}
// Return 201
w.WriteHeader(http.StatusCreated)
}