Fix broken Rich Media parsing when the image URL is a relative path

This commit is contained in:
Mark Felder 2024-03-07 14:19:03 -05:00
parent b067fbde31
commit 859ad4dbae
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ def ttl(data, _url) do
defp aws_signed_url?(image) when is_binary(image) and image != "" do
%URI{host: host, query: query} = URI.parse(image)
String.contains?(host, "amazonaws.com") and String.contains?(query, "X-Amz-Expires")
is_binary(host) and String.contains?(host, "amazonaws.com") and
String.contains?(query, "X-Amz-Expires")
end
defp aws_signed_url?(_), do: nil