Explicit error message

This commit is contained in:
Dashie 2018-05-02 22:45:20 +02:00
parent fd0bf3aa71
commit e448734952
No known key found for this signature in database
GPG Key ID: C2D57B325840B755
1 changed files with 1 additions and 1 deletions

View File

@ -49,6 +49,6 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
def nodeinfo(conn, _) do
conn
|> put_status(404)
|> json(%{error: "Nodeinfo schema not handled"})
|> json(%{error: "Nodeinfo schema version not handled"})
end
end