diff options
| -rw-r--r-- | lib/pleroma/user/backup.ex | 11 | 
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/pleroma/user/backup.ex b/lib/pleroma/user/backup.ex index c5038c8f4..d77d49890 100644 --- a/lib/pleroma/user/backup.ex +++ b/lib/pleroma/user/backup.ex @@ -118,14 +118,13 @@ defmodule Pleroma.User.Backup do    end    defp permitted?(user) do -    with {_, %__MODULE__{inserted_at: inserted_at}} <- {:last, get_last(user)}, -         days = Config.get([__MODULE__, :limit_days]), -         diff = Timex.diff(NaiveDateTime.utc_now(), inserted_at, :days), -         {_, true} <- {:diff, diff > days} do -      true +    with {_, %__MODULE__{inserted_at: inserted_at}} <- {:last, get_last(user)} do +      days = Config.get([__MODULE__, :limit_days]) +      diff = Timex.diff(NaiveDateTime.utc_now(), inserted_at, :days) + +      diff > days      else        {:last, nil} -> true -      {:diff, false} -> false      end    end  | 
