aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-07-21 18:22:22 +0300
committerrinpatch <rinpatch@sdf.org>2019-07-21 18:22:22 +0300
commit33681747857eec90ff56ea0342d2ea179c4f856e (patch)
tree6d62dc262a263ac4a8195ca5727cbd69a2f22364 /lib
parentfe548f322e834c7c81678a460c54c71f1198021c (diff)
downloadpleroma-33681747857eec90ff56ea0342d2ea179c4f856e.tar.gz
Fix rich media parser failing when no TTL can be found by image TTL
setters
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/rich_media/parser.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/rich_media/parser.ex b/lib/pleroma/web/rich_media/parser.ex
index b69b2be61..185156375 100644
--- a/lib/pleroma/web/rich_media/parser.ex
+++ b/lib/pleroma/web/rich_media/parser.ex
@@ -55,8 +55,8 @@ defmodule Pleroma.Web.RichMedia.Parser do
ttl_setters: [MyModule]
"""
def set_ttl_based_on_image({:ok, data}, url) do
- with {:ok, nil} <- Cachex.ttl(:rich_media_cache, url) do
- ttl = get_ttl_from_image(data, url)
+ with {:ok, nil} <- Cachex.ttl(:rich_media_cache, url),
+ ttl when is_number(ttl) <- get_ttl_from_image(data, url) do
Cachex.expire_at(:rich_media_cache, url, ttl * 1000)
{:ok, data}
else