forked from YokaiRick/akkoma
Remove unused pattern
This commit is contained in:
parent
4e8ab0deeb
commit
0681a26dbb
1 changed files with 8 additions and 9 deletions
|
@ -193,15 +193,14 @@ defp do_update_metadata(%URI{host: host} = uri, existing_record) do
|
|||
|
||||
Logger.info("Creating metadata for #{host}")
|
||||
|
||||
{:ok, instance} =
|
||||
%Instance{}
|
||||
|> changeset(%{
|
||||
host: host,
|
||||
favicon: favicon,
|
||||
nodeinfo: nodeinfo,
|
||||
metadata_updated_at: NaiveDateTime.utc_now()
|
||||
})
|
||||
|> Repo.insert()
|
||||
%Instance{}
|
||||
|> changeset(%{
|
||||
host: host,
|
||||
favicon: favicon,
|
||||
nodeinfo: nodeinfo,
|
||||
metadata_updated_at: NaiveDateTime.utc_now()
|
||||
})
|
||||
|> Repo.insert()
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue