[Pleroma.Web.MastodonAPI.FilterView] fix expires_at being a unsafe variable

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-08-21 20:35:14 +02:00
parent 9bddb39ff0
commit 6973b77e94
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE
1 changed files with 6 additions and 5 deletions

View File

@ -8,11 +8,12 @@ defmodule Pleroma.Web.MastodonAPI.FilterView do
end
def render("filter.json", %{filter: filter}) do
if filter.expires_at do
expires_at = Utils.to_masto_date(filter.expires_at)
else
expires_at = nil
end
expires_at =
if filter.expires_at do
Utils.to_masto_date(filter.expires_at)
else
nil
end
%{
id: to_string(filter.filter_id),