forked from AkkomaGang/akkoma
Prevent AccountView and instance.get_or_update_favicon fails
This commit is contained in:
parent
da4660d2bf
commit
0d91f65284
1 changed files with 4 additions and 1 deletions
|
@ -145,6 +145,8 @@ def get_or_update_favicon(%URI{host: host} = instance_uri) do
|
|||
|
||||
favicon
|
||||
end
|
||||
rescue
|
||||
_ -> nil
|
||||
end
|
||||
|
||||
defp scrape_favicon(%URI{} = instance_uri) do
|
||||
|
@ -159,7 +161,8 @@ defp scrape_favicon(%URI{} = instance_uri) do
|
|||
|> Floki.attribute("link[rel=icon]", "href")
|
||||
|> List.first(),
|
||||
favicon <- URI.merge(instance_uri, favicon_rel) |> to_string(),
|
||||
true <- is_binary(favicon) do
|
||||
true <- is_binary(favicon),
|
||||
true <- String.length(favicon) <= 255 do
|
||||
favicon
|
||||
else
|
||||
_ -> nil
|
||||
|
|
Loading…
Reference in a new issue