mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 02:05:12 +00:00
Web.MastodonAPI.MastodonAPIController: tag+any bookmark params in a array and flatten it
This commit is contained in:
parent
22f2687f17
commit
de956b9e04
|
@ -541,7 +541,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|||
local_only = params["local"] in [true, "True", "true", "1"]
|
||||
|
||||
tags =
|
||||
([params["tag"]] ++ (params["any"] || []))
|
||||
[params["tag"], params["any"]]
|
||||
|> List.flatten()
|
||||
|> Enum.uniq()
|
||||
|> Enum.filter(& &1)
|
||||
|> Enum.map(&String.downcase(&1))
|
||||
|
|
Loading…
Reference in a new issue