diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-02 06:33:15 +0100 |
---|---|---|
committer | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2019-03-02 06:33:15 +0100 |
commit | 3d22642352b797c6963dba7c9116c27699d5c641 (patch) | |
tree | ffd5e14ff5e25d564cf6a94f5dbcdefada685c9c | |
parent | 9b83236fb0292ae19a981b8f464183f8c6214a48 (diff) | |
download | pleroma-3d22642352b797c6963dba7c9116c27699d5c641.tar.gz |
Pleroma.User: Pass an array to profile_urls
-rw-r--r-- | lib/pleroma/user.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index b54613274..447beb25b 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -1204,7 +1204,7 @@ defmodule Pleroma.User do end) # TODO: get profile URLs other than user.ap_id - profile_urls = user[:ap_id] + profile_urls = [user[:ap_id]] bio |> CommonUtils.format_input("text/plain", %{ |