summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-09-14 15:46:00 +0300
committerrinpatch <rinpatch@sdf.org>2020-09-14 15:46:00 +0300
commitbb407edce4b512aae74c12ea0c1abcc92bc18ddb (patch)
tree4243457b996522f39dc200d7d87b1a3ca11cc2f2
parent4d543fcb759dccc3627be66851789712c189a540 (diff)
RichMedia: fix a compilation error due to nonexistent variable
No idea why this passed Gitlab CI
-rw-r--r--lib/pleroma/web/rich_media/parser.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/rich_media/parser.ex b/lib/pleroma/web/rich_media/parser.ex
index ab8f35922..33f6f1fa1 100644
--- a/lib/pleroma/web/rich_media/parser.ex
+++ b/lib/pleroma/web/rich_media/parser.ex
@@ -39,7 +39,7 @@ defmodule Pleroma.Web.RichMedia.Parser do
{:error, :body_too_large} = e ->
e
- {:error, {:content_type, _}} ->
+ {:error, {:content_type, _}} = e ->
e
# The TTL is not set for the errors above, since they are unlikely to change