mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 13:47:58 +01:00
Fix warning
This commit is contained in:
parent
796655f044
commit
3315eada3b
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ defmodule PhilomenaWeb.DuplicateReport.ClaimController do
|
|||
end
|
||||
|
||||
def delete(conn, _params) do
|
||||
{:ok, report} = DuplicateReports.unclaim_duplicate_report(conn.assigns.duplicate_report)
|
||||
{:ok, _report} = DuplicateReports.unclaim_duplicate_report(conn.assigns.duplicate_report)
|
||||
|
||||
conn
|
||||
|> put_flash(:info, "Successfully released report.")
|
||||
|
|
Loading…
Reference in a new issue