We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a4ff5 commit b35d740Copy full SHA for b35d740
1 file changed
lib/ff_bot/server/router.ex
@@ -53,7 +53,9 @@ defmodule FFBot.Server.Router do
53
uptime: #{upt}
54
"""
55
56
- send_resp(conn, 200, body)
+ conn
57
+ |> put_resp_header("content-type", "text/plain")
58
+ |> send_resp(200, body)
59
end
60
61
# Entrypoint for content coming from GitHub.
0 commit comments