diff options
author | rinpatch <rinpatch@sdf.org> | 2020-09-14 15:46:00 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-09-14 15:46:00 +0300 |
commit | bb407edce4b512aae74c12ea0c1abcc92bc18ddb (patch) | |
tree | 4243457b996522f39dc200d7d87b1a3ca11cc2f2 | |
parent | 4d543fcb759dccc3627be66851789712c189a540 (diff) | |
download | pleroma-bb407edce4b512aae74c12ea0c1abcc92bc18ddb.tar.gz |
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.ex | 2 |
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 |