Browse Source

Merge branch 'hotfix/rich-media-compile-error' into 'develop'

RichMedia: fix a compilation error due to nonexistent variable

See merge request pleroma/pleroma!2996
merge-requests/3010/head
rinpatch 3 years ago
parent
commit
6e70415e4a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/rich_media/parser.ex

+ 1
- 1
lib/pleroma/web/rich_media/parser.ex View File

@@ -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


Loading…
Cancel
Save