Switch OGP default type from "website" to "article"

This is what Mastodon uses and might fix some link preview bugs I've encountered
This commit is contained in:
Mark Felder 2021-06-08 17:14:30 -05:00
parent d70db63084
commit 9cb8960284
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
property: "og:description", property: "og:description",
content: scrubbed_content content: scrubbed_content
], []}, ], []},
{:meta, [property: "og:type", content: "website"], []} {:meta, [property: "og:type", content: "article"], []}
] ++ ] ++
if attachments == [] or Metadata.activity_nsfw?(object) do if attachments == [] or Metadata.activity_nsfw?(object) do
[ [
@ -57,7 +57,7 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
], []}, ], []},
{:meta, [property: "og:url", content: user.uri || user.ap_id], []}, {:meta, [property: "og:url", content: user.uri || user.ap_id], []},
{:meta, [property: "og:description", content: truncated_bio], []}, {:meta, [property: "og:description", content: truncated_bio], []},
{:meta, [property: "og:type", content: "website"], []}, {:meta, [property: "og:type", content: "article"], []},
{:meta, [property: "og:image", content: Utils.attachment_url(User.avatar_url(user))], []}, {:meta, [property: "og:image", content: Utils.attachment_url(User.avatar_url(user))], []},
{:meta, [property: "og:image:width", content: 150], []}, {:meta, [property: "og:image:width", content: 150], []},
{:meta, [property: "og:image:height", content: 150], []} {:meta, [property: "og:image:height", content: 150], []}