Replace Application.get_env/2 with Pleroma.Config.get/1

develop
Roman Chvanikov 2019-05-29 21:31:27 +03:00
parent ce47017c89
commit 5cee2fe9fe
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ defmodule Pleroma.DigestEmailWorker do
import Ecto.Query
def run do
config = Application.get_env(:pleroma, :email_notifications)[:digest]
config = Pleroma.Config.get([:email_notifications, :digest])
negative_interval = -Map.fetch!(config, :interval)
inactivity_threshold = Map.fetch!(config, :inactivity_threshold)
inactive_users_query = Pleroma.User.list_inactive_users_query(inactivity_threshold)