Fix rendering of reports

This commit is contained in:
Mark Felder 2020-10-07 12:30:55 -05:00
parent 87fc5a40f4
commit 42e78a08b2
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ def render("show.json", %{report: report, user: user, account: account, statuses
end
def render("index_notes.json", %{notes: notes}) when is_list(notes) do
Enum.map(notes, &render(__MODULE__, "show_note.json", &1))
Enum.map(notes, &render(__MODULE__, "show_note.json", Map.from_struct(&1)))
end
def render("index_notes.json", _), do: []