Skip to content
Snippets Groups Projects
Commit a2d7f0e0 authored by rinpatch's avatar rinpatch
Browse files

Remove :commit since a tuple is already returned

parent 5c5c8508
Branches
Tags
No related merge requests found
......@@ -5,7 +5,7 @@ defmodule Pleroma.Web.RichMedia.Parser do
def parse(url), do: parse_url(url)
else
def parse(url),
do: {:commit, Cachex.fetch!(:rich_media_cache, url, fn _ -> parse_url(url) end)}
do: Cachex.fetch!(:rich_media_cache, url, fn _ -> parse_url(url) end)
end
defp parse_url(url) do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment