forked from AkkomaGang/akkoma
Merge branch 'hotfix/ogp-cachex-fix' into 'develop'
Rich media: Remove :commit since a tuple is already returned See merge request pleroma/pleroma!649
This commit is contained in:
commit
b57db828c7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue