forked from AkkomaGang/akkoma
Accept strings in expires_in because sasuga javascript
This commit is contained in:
parent
0407ffe75f
commit
5f67c26baf
1 changed files with 4 additions and 1 deletions
|
@ -103,12 +103,15 @@ def to_for_user_and_mentions(_user, mentions, inReplyTo, "direct") do
|
||||||
end
|
end
|
||||||
|
|
||||||
def make_poll_data(%{"poll" => %{"options" => options, "expires_in" => expires_in}} = data)
|
def make_poll_data(%{"poll" => %{"options" => options, "expires_in" => expires_in}} = data)
|
||||||
when is_list(options) and is_integer(expires_in) do
|
when is_list(options) do
|
||||||
%{max_expiration: max_expiration, min_expiration: min_expiration} =
|
%{max_expiration: max_expiration, min_expiration: min_expiration} =
|
||||||
limits = Pleroma.Config.get([:instance, :poll_limits])
|
limits = Pleroma.Config.get([:instance, :poll_limits])
|
||||||
|
|
||||||
# XXX: There is probably a cleaner way of doing this
|
# XXX: There is probably a cleaner way of doing this
|
||||||
try do
|
try do
|
||||||
|
# In some cases mastofe sends out strings instead of integers
|
||||||
|
expires_in = if is_binary(expires_in), do: String.to_integer(expires_in), else: expires_in
|
||||||
|
|
||||||
if Enum.count(options) > limits.max_options do
|
if Enum.count(options) > limits.max_options do
|
||||||
raise ArgumentError, message: "Poll can't contain more than #{limits.max_options} options"
|
raise ArgumentError, message: "Poll can't contain more than #{limits.max_options} options"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue