Fix some edge cases [nervous laughter]
This commit is contained in:
parent
4656f433f9
commit
ce15e0659e
3 changed files with 23 additions and 4 deletions
|
|
@ -21,7 +21,13 @@ defmodule Pleroma.Web.Metadata do
|
|||
{:meta,
|
||||
[
|
||||
property: "og:title",
|
||||
content: "#{user.name} (@#{user.nickname}@#{pleroma_domain()}) post ##{activity.id}"
|
||||
content:
|
||||
"#{user.name}" <>
|
||||
if user.local do
|
||||
"(@#{user.nickname}@{pleroma_domain})"
|
||||
else
|
||||
"(@#{user.nickname})"
|
||||
end
|
||||
], []},
|
||||
{:meta, [property: "og:url", content: activity.data["id"]], []},
|
||||
{:meta, [property: "og:description", content: truncated_content], []},
|
||||
|
|
@ -35,7 +41,7 @@ defmodule Pleroma.Web.Metadata do
|
|||
|
||||
# opengraph for user card
|
||||
defp opengraph_tags(%{user: user}) do
|
||||
with truncated_bio = scrub_html_and_truncate(user.bio) do
|
||||
with truncated_bio = scrub_html_and_truncate(user.bio || "") do
|
||||
[
|
||||
{:meta,
|
||||
[
|
||||
|
|
|
|||
|
|
@ -505,7 +505,7 @@ defmodule Pleroma.Web.Router do
|
|||
|
||||
scope "/", Fallback do
|
||||
get("/registration/:token", RedirectController, :registration_page)
|
||||
get("/*path", RedirectController, :redirector)
|
||||
get("/*path", RedirectController, :redirector_with_meta)
|
||||
|
||||
options("/*path", RedirectController, :empty)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue