From: Haelwenn (lanodan) Monnier Date: Tue, 21 Aug 2018 18:35:14 +0000 (+0200) Subject: [Pleroma.Web.MastodonAPI.FilterView] fix expires_at being a unsafe variable X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=6973b77e9462475361772907ddd690a960041b64;p=akkoma [Pleroma.Web.MastodonAPI.FilterView] fix expires_at being a unsafe variable --- diff --git a/lib/pleroma/web/mastodon_api/views/filter_view.ex b/lib/pleroma/web/mastodon_api/views/filter_view.ex index e8401cc2d..6bd687d46 100644 --- a/lib/pleroma/web/mastodon_api/views/filter_view.ex +++ b/lib/pleroma/web/mastodon_api/views/filter_view.ex @@ -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),