Add new line to the end of response

This commit is contained in:
Naoki Takezoe
2018-05-25 02:07:13 +09:00
parent 2b2669978f
commit 89bf8db087

View File

@@ -285,7 +285,7 @@ trait AccountControllerBase extends AccountManagementControllerBase {
get("/:userName.keys") {
val keys = getPublicKeys(params("userName"))
contentType = "text/plain; charset=utf-8"
keys.map(_.publicKey).mkString("\n")
keys.map(_.publicKey).mkString("", "\n", "\n")
}
get("/:userName/_avatar") {