Browse Source

formatter: fix matching osada users

tags/v0.9.9
William Pitcock 5 years ago
parent
commit
582dbe5c8d
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      lib/pleroma/formatter.ex

+ 6
- 1
lib/pleroma/formatter.ex View File

@@ -248,7 +248,12 @@ defmodule Pleroma.Formatter do
subs =
subs ++
Enum.map(mentions, fn {match, %User{ap_id: ap_id, info: info}, uuid} ->
ap_id = info["source_data"]["url"] || ap_id
ap_id =
if is_binary(info["source_data"]["url"]) do
info["source_data"]["url"]
else
ap_id
end

short_match = String.split(match, "@") |> tl() |> hd()



Loading…
Cancel
Save